Add router advertisement Strategy option to router.

This commit is contained in:
Milos Gajdos
2019-10-09 16:03:06 +01:00
parent fe94237448
commit 96e564e402
3 changed files with 26 additions and 14 deletions

View File

@@ -139,6 +139,16 @@ type Advert struct {
Events []*Event
}
// Strategy is route advertisement strategy
type Strategy int
const (
// All advertises all routes to the network
All Strategy = iota
// Optimal advertises optimal routes to the network
Optimal
)
// NewRouter creates new Router and returns it
func NewRouter(opts ...Option) Router {
return newRouter(opts...)