mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f6ed590596
Signed-off-by: John Howard <jhoward@microsoft.com>
70 lines
1.7 KiB
Go
70 lines
1.7 KiB
Go
// +build !windows
|
|
|
|
package runconfig
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
// IsPrivate indicates whether container uses it's private network stack.
|
|
func (n NetworkMode) IsPrivate() bool {
|
|
return !(n.IsHost() || n.IsContainer())
|
|
}
|
|
|
|
// IsDefault indicates whether container uses the default network stack.
|
|
func (n NetworkMode) IsDefault() bool {
|
|
return n == "default"
|
|
}
|
|
|
|
// DefaultDaemonNetworkMode returns the default network stack the daemon should
|
|
// use.
|
|
func DefaultDaemonNetworkMode() NetworkMode {
|
|
return NetworkMode("bridge")
|
|
}
|
|
|
|
// NetworkName returns the name of the network stack.
|
|
func (n NetworkMode) NetworkName() string {
|
|
if n.IsBridge() {
|
|
return "bridge"
|
|
} else if n.IsHost() {
|
|
return "host"
|
|
} else if n.IsContainer() {
|
|
return "container"
|
|
} else if n.IsNone() {
|
|
return "none"
|
|
} else if n.IsDefault() {
|
|
return "default"
|
|
}
|
|
return ""
|
|
}
|
|
|
|
// IsBridge indicates whether container uses the bridge network stack
|
|
func (n NetworkMode) IsBridge() bool {
|
|
return n == "bridge"
|
|
}
|
|
|
|
// IsHost indicates whether container uses the host network stack.
|
|
func (n NetworkMode) IsHost() bool {
|
|
return n == "host"
|
|
}
|
|
|
|
// IsContainer indicates whether container uses a container network stack.
|
|
func (n NetworkMode) IsContainer() bool {
|
|
parts := strings.SplitN(string(n), ":", 2)
|
|
return len(parts) > 1 && parts[0] == "container"
|
|
}
|
|
|
|
// IsNone indicates whether container isn't using a network stack.
|
|
func (n NetworkMode) IsNone() bool {
|
|
return n == "none"
|
|
}
|
|
|
|
// MergeConfigs merges the specified container Config and HostConfig.
|
|
// It creates a ContainerConfigWrapper.
|
|
func MergeConfigs(config *Config, hostConfig *HostConfig) *ContainerConfigWrapper {
|
|
return &ContainerConfigWrapper{
|
|
config,
|
|
hostConfig,
|
|
"", nil,
|
|
}
|
|
}
|