diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-01-23 20:40:16 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-02-10 22:15:04 -0800 |
commit | 36f8911cee2557a0065ee291d03a6c6d88b537c0 (patch) | |
tree | b8eabbef187660c8a4b03cdbed0685c8581fec87 /table/adj.go | |
parent | c3dbc58040a289aed7673149145e7d3a4944e183 (diff) |
table: support sending/receiving EOR msg
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'table/adj.go')
-rw-r--r-- | table/adj.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/table/adj.go b/table/adj.go index 9e88e155..77660fab 100644 --- a/table/adj.go +++ b/table/adj.go @@ -42,7 +42,7 @@ func NewAdjRib(id string, rfList []bgp.RouteFamily, isCollector bool) *AdjRib { func (adj *AdjRib) Update(pathList []*Path) { for _, path := range pathList { - if path == nil { + if path == nil || path.IsEOR() { continue } rf := path.GetRouteFamily() |