mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-24 09:17:53 +00:00
13 lines
343 B
Go
13 lines
343 B
Go
// +build !linux
|
|
|
|
package libpod
|
|
|
|
// replaceNetNS is exclusive to the Linux platform and is a no-op elsewhere
|
|
func replaceNetNS(netNSPath string, ctr *Container, newState *ContainerState) error {
|
|
return nil
|
|
}
|
|
|
|
// getNetNSPath is exclusive to the Linux platform and is a no-op elsewhere
|
|
func getNetNSPath(ctr *Container) string {
|
|
return ""
|
|
}
|