summaryrefslogtreecommitdiff
path: root/libpod/networking_unsupported.go
blob: 1e46ca40bee4b9c6615f593c87d9c770bc734609 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// +build !linux

package libpod

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 *InspectContainerData) *InspectContainerData {
	return nil
}