Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Register ¶ added in v0.5.6
func Register(name string, ctor BackendCtor)
Types ¶
type Backend ¶
type Backend interface { // Called first to start the necessary event loops and such Run(ctx context.Context) // Called when the backend should create or begin managing a new network RegisterNetwork(ctx context.Context, network string, config *subnet.Config) (Network, error) }
Besides the entry points in the Backend interface, the backend's New() function receives static network interface information (like internal and external IP addresses, MTU, etc) which it should cache for later use if needed.
To implement a singleton backend which manages multiple networks, the New() function should create the singleton backend object once, and return that object on on further calls to New(). The backend is guaranteed that the arguments passed via New() will not change across invocations. Also, since multiple RegisterNetwork() and Run() calls may be in-flight at any given time for a singleton backend, it must protect these calls with a mutex.
type BackendCtor ¶ added in v0.5.6
type BackendCtor func(sm subnet.Manager, ei *ExternalInterface) (Backend, error)
type ExternalInterface ¶ added in v0.5.6
type Manager ¶ added in v0.5.6
func NewManager ¶ added in v0.5.6
type SimpleNetwork ¶ added in v0.5.6
type SimpleNetwork struct { SubnetLease *subnet.Lease ExtIface *ExternalInterface }
func (*SimpleNetwork) Lease ¶ added in v0.5.6
func (n *SimpleNetwork) Lease() *subnet.Lease
func (*SimpleNetwork) MTU ¶ added in v0.5.6
func (n *SimpleNetwork) MTU() int
func (*SimpleNetwork) Run ¶ added in v0.5.6
func (_ *SimpleNetwork) Run(ctx context.Context)