package network

import "github.com/dotcloud/docker/api/server/router/network"

Index

Functions

func NewRouter

func NewRouter(b Backend, c ClusterBackend) router.Router

NewRouter initializes a new network router

Types

type Backend

type Backend interface {
	GetNetworks(filters.Args, backend.NetworkListConfig) ([]network.Inspect, error)
	CreateNetwork(ctx context.Context, nc network.CreateRequest) (*network.CreateResponse, error)
	ConnectContainerToNetwork(ctx context.Context, 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) (*network.PruneReport, error)
}

Backend is all the methods that need to be implemented to provide network specific functionality.

type ClusterBackend

type ClusterBackend interface {
	GetNetworks(filters.Args) ([]network.Inspect, error)
	GetNetwork(name string) (network.Inspect, error)
	GetNetworksByName(name string) ([]network.Inspect, error)
	CreateNetwork(nc network.CreateRequest) (string, error)
	RemoveNetwork(name string) error
}

ClusterBackend is all the methods that need to be implemented to provide cluster network specific functionality.

Source Files

backend.go network.go network_routes.go

Version
v28.1.1+incompatible (latest)
Published
Apr 18, 2025
Platform
linux/amd64
Imports
14 packages
Last checked
31 minutes ago

Tools for package owners.