mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
8cf7270d06
- Fix npe in sbJoin error path
- Fail again endpoint Join in case of failure
in programming the external connectivity
- In bridge, look for parent and child container configs
in the generic data
- iptables.Exists() might be called before any other call to
iptables.raw(). We need to call checkInit() then.
Introduced by 1638fbdf27
Signed-off-by: Alessandro Boch <aboch@docker.com>
18 lines
483 B
Go
18 lines
483 B
Go
package bridge
|
|
|
|
const (
|
|
// BridgeName label for bridge driver
|
|
BridgeName = "com.docker.network.bridge.name"
|
|
|
|
// EnableIPMasquerade label for bridge driver
|
|
EnableIPMasquerade = "com.docker.network.bridge.enable_ip_masquerade"
|
|
|
|
// EnableICC label
|
|
EnableICC = "com.docker.network.bridge.enable_icc"
|
|
|
|
// DefaultBindingIP label
|
|
DefaultBindingIP = "com.docker.network.bridge.host_binding_ipv4"
|
|
|
|
// DefaultBridge label
|
|
DefaultBridge = "com.docker.network.bridge.default_bridge"
|
|
)
|