summaryrefslogtreecommitdiff
path: root/libpod/networking_unsupported.go
blob: e4c668f88a8c1ed08e700e1736485928eb613971 (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

import (
	"github.com/projectatomic/libpod/pkg/inspect"
)

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
}