blob: 244dc51a0df18f1b3521347cfafa2cd068d80795 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// +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 ""
}
|