mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
05a3f2666e
There are cases such as migrating from classic overlay network to the swarm-mode networking (without kv-store), such a mechanism to allow disconnecting a container even when a network isnt available will be useful. Signed-off-by: Madhu Venugopal <madhu@docker.com>
20 lines
805 B
Go
20 lines
805 B
Go
package network
|
|
|
|
import (
|
|
"github.com/docker/engine-api/types"
|
|
"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 {
|
|
FindNetwork(idName string) (libnetwork.Network, error)
|
|
GetNetworkByName(idName string) (libnetwork.Network, error)
|
|
GetNetworksByID(partialID string) []libnetwork.Network
|
|
GetNetworks() []libnetwork.Network
|
|
CreateNetwork(nc types.NetworkCreateRequest) (*types.NetworkCreateResponse, error)
|
|
ConnectContainerToNetwork(containerName, networkName string, endpointConfig *network.EndpointSettings) error
|
|
DisconnectContainerFromNetwork(containerName string, networkName string, force bool) error
|
|
DeleteNetwork(name string) error
|
|
}
|