mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
26dd026bd7
Add filter support for `network ls` to hide predefined network, then user can use "docker network rm `docker network ls -f type=custom`" to delete a bundle of userdefined networks. Signed-off-by: Zhang Wei <zhangwei555@huawei.com>
22 lines
755 B
Go
22 lines
755 B
Go
package network
|
|
|
|
import (
|
|
"github.com/docker/docker/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)
|
|
GetNetwork(idName string, by int) (libnetwork.Network, error)
|
|
GetNetworksByID(partialID string) []libnetwork.Network
|
|
GetAllNetworks() []libnetwork.Network
|
|
CreateNetwork(name, driver string, ipam network.IPAM,
|
|
options map[string]string) (libnetwork.Network, error)
|
|
ConnectContainerToNetwork(containerName, networkName string) error
|
|
DisconnectContainerFromNetwork(containerName string,
|
|
network libnetwork.Network) error
|
|
NetworkControllerEnabled() bool
|
|
}
|