mirror of
https://github.com/containers/podman.git
synced 2025-05-20 00:27:03 +08:00

Need to get some small changes into libpod to pull back into buildah to complete buildah transition. Signed-off-by: Daniel J Walsh <dwalsh@redhat.com> Closes: #1270 Approved by: mheon
28 lines
574 B
Go
28 lines
574 B
Go
// +build !linux
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"github.com/containers/libpod/pkg/inspect"
|
|
)
|
|
|
|
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 *inspect.ContainerInspectData) *inspect.ContainerInspectData {
|
|
return nil
|
|
}
|