mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
344b093258
full diffs: -fc5a7d91d5...62a13ae87c
-b2de5d10e3
...v1.0.0 -604eaf189e
...13995c7128ccc8e51e9a6bd2b551020a27180abd notable changes in libnetwork: - docker/libnetwork#2366 Bump vishvananda/netlink to 1.0.0 - docker/libnetwork#2339 controller: Check if IPTables is enabled for arrangeUserFilterRule - addresses docker/libnetwork#2158 dockerd when run with --iptables=false modifies iptables by adding DOCKER-USER - addresses moby/moby#35777 With iptables=false dockerd still creates DOCKER-USER chain and rules - addresses docker/for-linux#136 dockerd --iptables=false adds DOCKER-USER chain and modify FORWARD chain anyway - docker/libnetwork#2394 Make DNS records and queries case-insensitive - addresses moby/moby#28689 Embedded DNS is case-sensitive - addresses moby/moby#21169 hostnames with new networking are case-sensitive Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
43 lines
727 B
Go
43 lines
727 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 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
|
|
}
|