mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a0a473125b
After moving libnetwork to this repo, we need to update all the import paths for libnetwork to point to docker/docker/libnetwork instead of docker/libnetwork. This change implements that. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
32 lines
1.4 KiB
Go
32 lines
1.4 KiB
Go
package network // import "github.com/docker/docker/api/server/router/network"
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/filters"
|
|
"github.com/docker/docker/api/types/network"
|
|
"github.com/docker/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)
|
|
GetNetworks(filters.Args, types.NetworkListConfig) ([]types.NetworkResource, error)
|
|
CreateNetwork(nc types.NetworkCreateRequest) (*types.NetworkCreateResponse, error)
|
|
ConnectContainerToNetwork(containerName, networkName string, endpointConfig *network.EndpointSettings) error
|
|
DisconnectContainerFromNetwork(containerName string, networkName string, force bool) error
|
|
DeleteNetwork(networkID string) error
|
|
NetworksPrune(ctx context.Context, pruneFilters filters.Args) (*types.NetworksPruneReport, error)
|
|
}
|
|
|
|
// ClusterBackend is all the methods that need to be implemented
|
|
// to provide cluster network specific functionality.
|
|
type ClusterBackend interface {
|
|
GetNetworks(filters.Args) ([]types.NetworkResource, error)
|
|
GetNetwork(name string) (types.NetworkResource, error)
|
|
GetNetworksByName(name string) ([]types.NetworkResource, error)
|
|
CreateNetwork(nc types.NetworkCreateRequest) (string, error)
|
|
RemoveNetwork(name string) error
|
|
}
|