summaryrefslogtreecommitdiffhomepage
path: root/table/adj.go
diff options
context:
space:
mode:
Diffstat (limited to 'table/adj.go')
-rw-r--r--table/adj.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/table/adj.go b/table/adj.go
index 86e760b7..8c7f0de7 100644
--- a/table/adj.go
+++ b/table/adj.go
@@ -22,18 +22,16 @@ import (
)
type AdjRib struct {
- id string
accepted map[bgp.RouteFamily]int
table map[bgp.RouteFamily]map[string]*Path
}
-func NewAdjRib(id string, rfList []bgp.RouteFamily) *AdjRib {
+func NewAdjRib(rfList []bgp.RouteFamily) *AdjRib {
table := make(map[bgp.RouteFamily]map[string]*Path)
for _, rf := range rfList {
table[rf] = make(map[string]*Path)
}
return &AdjRib{
- id: id,
table: table,
accepted: make(map[bgp.RouteFamily]int),
}