blob: 4ff8ecd62754e8e26426262ddd433bc8893cdd0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// +build !linux
package libpod
import (
"github.com/projectatomic/libpod/pkg/inspect"
)
func JoinNetworkNameSpace(netNSBytes []byte) (*Container, bool, error) {
return nil, false, 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
}
|