mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
dfb00652aa
Signed-off-by: Aidan Hobson Sayers <aidanhs@cantab.net>
21 lines
870 B
Go
21 lines
870 B
Go
package network
|
|
|
|
import (
|
|
"github.com/docker/engine-api/types/network"
|
|
"github.com/docker/libnetwork"
|
|
)
|
|
|
|
// Backend is all the methods that need to be implemented
|
|
// to provide network specific functionality.
|
|
type Backend interface {
|
|
NetworkControllerEnabled() bool
|
|
|
|
FindNetwork(idName string) (libnetwork.Network, error)
|
|
GetNetworkByName(idName string) (libnetwork.Network, error)
|
|
GetNetworksByID(partialID string) []libnetwork.Network
|
|
GetAllNetworks() []libnetwork.Network
|
|
CreateNetwork(name, driver string, ipam network.IPAM, options map[string]string, internal bool, enableIPv6 bool) (libnetwork.Network, error)
|
|
ConnectContainerToNetwork(containerName, networkName string, endpointConfig *network.EndpointSettings) error
|
|
DisconnectContainerFromNetwork(containerName string, network libnetwork.Network, force bool) error
|
|
DeleteNetwork(name string) error
|
|
}
|