mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 19:56:01 +00:00
hack/pin-dependency.sh github.com/moby/ipvs v1.1.0 - go to a fixed tag for `vishvananda/netns` - no more references to `pkg/errors` Signed-off-by: Davanum Srinivas <davanum@gmail.com>
61 lines
1.1 KiB
Go
61 lines
1.1 KiB
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package netns
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrNotImplemented = errors.New("not implemented")
|
|
)
|
|
|
|
// Setns sets namespace using golang.org/x/sys/unix.Setns on Linux. It
|
|
// is not implemented on other platforms.
|
|
//
|
|
// Deprecated: Use golang.org/x/sys/unix.Setns instead.
|
|
func Setns(ns NsHandle, nstype int) (err error) {
|
|
return ErrNotImplemented
|
|
}
|
|
|
|
func Set(ns NsHandle) (err error) {
|
|
return ErrNotImplemented
|
|
}
|
|
|
|
func New() (ns NsHandle, err error) {
|
|
return -1, ErrNotImplemented
|
|
}
|
|
|
|
func NewNamed(name string) (NsHandle, error) {
|
|
return -1, ErrNotImplemented
|
|
}
|
|
|
|
func DeleteNamed(name string) error {
|
|
return ErrNotImplemented
|
|
}
|
|
|
|
func Get() (NsHandle, error) {
|
|
return -1, ErrNotImplemented
|
|
}
|
|
|
|
func GetFromPath(path string) (NsHandle, error) {
|
|
return -1, ErrNotImplemented
|
|
}
|
|
|
|
func GetFromName(name string) (NsHandle, error) {
|
|
return -1, ErrNotImplemented
|
|
}
|
|
|
|
func GetFromPid(pid int) (NsHandle, error) {
|
|
return -1, ErrNotImplemented
|
|
}
|
|
|
|
func GetFromThread(pid, tid int) (NsHandle, error) {
|
|
return -1, ErrNotImplemented
|
|
}
|
|
|
|
func GetFromDocker(id string) (NsHandle, error) {
|
|
return -1, ErrNotImplemented
|
|
}
|