mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
53582321ee
Signed-off-by: Tibor Vass <tibor@docker.com>
18 lines
485 B
Go
18 lines
485 B
Go
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
|
|
}
|