blob: 64610d304ad6ad2788ce119928e8e43219000996 (
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 ""
}
|