mirror of https://github.com/containers/podman.git
24 lines
502 B
Go
24 lines
502 B
Go
// +build !linux
|
|
|
|
package libpod
|
|
|
|
func (r *Runtime) setupRootlessNetNS(ctr *Container) (err error) {
|
|
return ErrNotImplemented
|
|
}
|
|
|
|
func (r *Runtime) setupNetNS(ctr *Container) (err error) {
|
|
return ErrNotImplemented
|
|
}
|
|
|
|
func (r *Runtime) teardownNetNS(ctr *Container) error {
|
|
return ErrNotImplemented
|
|
}
|
|
|
|
func (r *Runtime) createNetNS(ctr *Container) (err error) {
|
|
return ErrNotImplemented
|
|
}
|
|
|
|
func (c *Container) getContainerNetworkInfo(data *InspectContainerData) *InspectContainerData {
|
|
return nil
|
|
}
|