Documentation ¶
Overview ¶
Package netns allows ultra-simple network namespace handling. NsHandles can be retrieved and set. Note that the current namespace is thread local so actions that set and reset namespaces should use LockOSThread to make sure the namespace doesn't change due to a goroutine switch. It is best to close NsHandles when you are done with them. This can be accomplished via a `defer ns.Close()` on the handle. Changing namespaces requires elevated privileges, so in most cases this code needs to be run as root.
Index ¶
- Variables
- func DeleteNamed(name string) error
- func Set(ns NsHandle) error
- func Setns(ns NsHandle, nstype int) errordeprecated
- type NsHandle
- func Get() (NsHandle, error)
- func GetFromDocker(id string) (NsHandle, error)
- func GetFromName(name string) (NsHandle, error)
- func GetFromPath(path string) (NsHandle, error)
- func GetFromPid(pid int) (NsHandle, error)
- func GetFromThread(pid int, tid int) (NsHandle, error)
- func New() (NsHandle, error)
- func NewNamed(name string) (NsHandle, error)
- func None() NsHandle
Constants ¶
This section is empty.
Variables ¶
var ErrNotImplemented = errors.New("not implemented")
Functions ¶
func DeleteNamed ¶
Types ¶
type NsHandle ¶
type NsHandle int
NsHandle is a handle to a network namespace. It can only be used on Linux, but provides stub methods on other platforms.
func GetFromDocker ¶
func GetFromName ¶
func GetFromPath ¶
func GetFromPid ¶
func (*NsHandle) Close ¶
Close closes the NsHandle and resets its file descriptor to -1. It is only implemented on Linux.
func (NsHandle) Equal ¶
Equal determines if two network handles refer to the same network namespace. It is only implemented on Linux.
func (NsHandle) IsOpen ¶
IsOpen returns true if Close() has not been called. It is only implemented on Linux and always returns false on other platforms.