mirror of
https://github.com/vishvananda/netns
synced 2025-02-18 12:36:49 +00:00
This commit adds build flags for the various architectures to prevent failures when cross compiling. It also fixes errors in netns_unspecified.go by replacing the undefined type Namespace with NsHandle Signed-off-by: Dave Tucker <dt@docker.com>
36 lines
558 B
Go
36 lines
558 B
Go
// +build !linux
|
|
|
|
package netns
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrNotImplemented = errors.New("not implemented")
|
|
)
|
|
|
|
func Set(ns NsHandle) (err error) {
|
|
return ErrNotImplemented
|
|
}
|
|
|
|
func New() (ns NsHandle, err error) {
|
|
return -1, ErrNotImplemented
|
|
}
|
|
|
|
func Get() (NsHandle, error) {
|
|
return -1, ErrNotImplemented
|
|
}
|
|
|
|
func GetFromName(name string) (NsHandle, error) {
|
|
return -1, ErrNotImplemented
|
|
}
|
|
|
|
func GetFromPid(pid int) (NsHandle, error) {
|
|
return -1, ErrNotImplemented
|
|
}
|
|
|
|
func GetFromDocker(id string) (NsHandle, error) {
|
|
return -1, ErrNotImplemented
|
|
}
|