mirror of
https://github.com/clearlinux/libnetwork.git
synced 2026-06-16 02:25:48 +00:00
9a47be244a
- Maps 1 to 1 with container's networking stack
- It holds container's specific nw options which
before were incorrectly owned by Endpoint.
- Sandbox creation no longer coupled with Endpoint Join,
sandbox and endpoint have now separate lifecycle.
- LeaveAll naturally replaced by Sandbox.Delete
- some pkg and file renaming in order to have clear
mapping between structure name and entity ("sandbox")
- Revisited hosts and resolv.conf handling
- Removed from JoinInfo interface capability of setting hosts and resolv.conf paths
- Changed etchosts.Build() to first write the search domains and then the nameservers
Signed-off-by: Alessandro Boch <aboch@docker.com>
62 lines
1.1 KiB
Go
62 lines
1.1 KiB
Go
package osl
|
|
|
|
import "net"
|
|
|
|
func (nh *neigh) processNeighOptions(options ...NeighOption) {
|
|
for _, opt := range options {
|
|
if opt != nil {
|
|
opt(nh)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (n *networkNamespace) LinkName(name string) NeighOption {
|
|
return func(nh *neigh) {
|
|
nh.linkName = name
|
|
}
|
|
}
|
|
|
|
func (n *networkNamespace) Family(family int) NeighOption {
|
|
return func(nh *neigh) {
|
|
nh.family = family
|
|
}
|
|
}
|
|
|
|
func (i *nwIface) processInterfaceOptions(options ...IfaceOption) {
|
|
for _, opt := range options {
|
|
if opt != nil {
|
|
opt(i)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (n *networkNamespace) Bridge(isBridge bool) IfaceOption {
|
|
return func(i *nwIface) {
|
|
i.bridge = isBridge
|
|
}
|
|
}
|
|
|
|
func (n *networkNamespace) Master(name string) IfaceOption {
|
|
return func(i *nwIface) {
|
|
i.master = name
|
|
}
|
|
}
|
|
|
|
func (n *networkNamespace) Address(addr *net.IPNet) IfaceOption {
|
|
return func(i *nwIface) {
|
|
i.address = addr
|
|
}
|
|
}
|
|
|
|
func (n *networkNamespace) AddressIPv6(addr *net.IPNet) IfaceOption {
|
|
return func(i *nwIface) {
|
|
i.addressIPv6 = addr
|
|
}
|
|
}
|
|
|
|
func (n *networkNamespace) Routes(routes []*net.IPNet) IfaceOption {
|
|
return func(i *nwIface) {
|
|
i.routes = routes
|
|
}
|
|
}
|