2015-04-04 00:06:48 -04:00
|
|
|
package network
|
2014-04-14 06:15:31 +00:00
|
|
|
|
2015-04-04 00:06:48 -04:00
|
|
|
import "github.com/docker/docker/nat"
|
2014-04-14 06:15:31 +00:00
|
|
|
|
2015-04-04 00:06:48 -04:00
|
|
|
type Settings struct {
|
2015-01-09 00:03:19 +01:00
|
|
|
IPAddress string
|
|
|
|
IPPrefixLen int
|
|
|
|
MacAddress string
|
|
|
|
LinkLocalIPv6Address string
|
|
|
|
LinkLocalIPv6PrefixLen int
|
|
|
|
GlobalIPv6Address string
|
|
|
|
GlobalIPv6PrefixLen int
|
|
|
|
Gateway string
|
|
|
|
IPv6Gateway string
|
|
|
|
Bridge string
|
2015-04-04 00:06:48 -04:00
|
|
|
PortMapping map[string]map[string]string // Deprecated
|
2015-01-09 00:03:19 +01:00
|
|
|
Ports nat.PortMap
|
2014-04-14 06:15:31 +00:00
|
|
|
}
|