Move router and proxy into network package

This commit is contained in:
Asim Aslam
2019-06-21 17:20:31 +01:00
parent 7936d74602
commit 3f97743e34
14 changed files with 3 additions and 3 deletions

View File

@@ -1,32 +0,0 @@
// Package router provides a network routing control plane
package router
// Router is an interface for a routing control plane
type Router interface {
// Init initializes the router with options
Init(...Option) error
// Options returns the router options
Options() Options
// ID returns the id of the router
ID() string
// Table returns the routing table
Table() Table
// Address returns the router adddress
Address() string
// Network returns the network address of the router
Network() string
// Advertise starts advertising the routes to the network
Advertise() error
// Stop stops the router
Stop() error
// String returns debug info
String() string
}
// Option used by the router
type Option func(*Options)
// NewRouter creates new Router and returns it
func NewRouter(opts ...Option) Router {
return newRouter(opts...)
}