mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
68ae284db5
- Added controller, network, endpoint and sandbox interfaces - Created netutils package for miscallaneous network utilities - Created driverapi package to break cyclic dependency b/w driver and libnetwork - Made libnetwork multithread safe - Made bridge driver multithread safe - Fixed README.md Signed-off-by: Jana Radhakrishnan <mrjana@docker.com>
25 lines
919 B
Go
25 lines
919 B
Go
package sandbox
|
|
|
|
import "github.com/docker/libnetwork/driverapi"
|
|
|
|
// Sandbox represents a network sandbox, identified by a specific key. It
|
|
// holds a list of Interfaces, routes etc, and more can be added dynamically.
|
|
type Sandbox interface {
|
|
// The path where the network namespace is mounted.
|
|
Key() string
|
|
|
|
// The collection of Interface previously added with the AddInterface
|
|
// method. Note that this doesn't incude network interfaces added in any
|
|
// other way (such as the default loopback interface which are automatically
|
|
// created on creation of a sandbox).
|
|
Interfaces() []*driverapi.Interface
|
|
|
|
// Add an existing Interface to this sandbox. The operation will rename
|
|
// from the Interface SrcName to DstName as it moves, and reconfigure the
|
|
// interface according to the specified settings.
|
|
AddInterface(*driverapi.Interface) error
|
|
|
|
SetGateway(gw string) error
|
|
|
|
SetGatewayIPv6(gw string) error
|
|
}
|