aboutsummaryrefslogtreecommitdiff
path: root/libpod/networking_unsupported.go
blob: 070985c471fefc97953296c5825dddd187414afc (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 (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 *inspect.ContainerInspectData) *inspect.ContainerInspectData {
	return nil
}