mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Remove jobs from daemon/networkdriver/bridge
Signed-off-by: Tibor Vass <tibor@docker.com>
This commit is contained in:
parent
7233bd223d
commit
53582321ee
11 changed files with 233 additions and 433 deletions
18
daemon/network/settings.go
Normal file
18
daemon/network/settings.go
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
package network
|
||||
|
||||
import "github.com/docker/docker/nat"
|
||||
|
||||
type Settings struct {
|
||||
IPAddress string
|
||||
IPPrefixLen int
|
||||
MacAddress string
|
||||
LinkLocalIPv6Address string
|
||||
LinkLocalIPv6PrefixLen int
|
||||
GlobalIPv6Address string
|
||||
GlobalIPv6PrefixLen int
|
||||
Gateway string
|
||||
IPv6Gateway string
|
||||
Bridge string
|
||||
PortMapping map[string]map[string]string // Deprecated
|
||||
Ports nat.PortMap
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue