diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-05-01 10:06:42 +0000 |
---|---|---|
committer | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-05-01 10:16:09 +0000 |
commit | 232b30117c8eafc5cae7aec81ce9fafe742bdd4b (patch) | |
tree | 235342a7345b6034f02a1864485a4c96e25d3ea2 /table/destination.go | |
parent | cea5941db2dd9268ad35b5f494480350d747d404 (diff) |
table: add support for route target constraint nlri
add rtc route
$ gobgp global rib add 65000 77 -a rtc
check it
$ gobgp global rib -a rtc
Network Next Hop AS_PATH Age Attrs
*> 65001:65000:75 0.0.0.0 [65001] 00:15:35 [{Origin: IGP}]
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'table/destination.go')
-rw-r--r-- | table/destination.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/table/destination.go b/table/destination.go index bf4afe63..a01c6e04 100644 --- a/table/destination.go +++ b/table/destination.go @@ -1043,3 +1043,15 @@ func NewEncapDestination(nlri bgp.AddrPrefixInterface) *EncapDestination { DestinationDefault: d, } } + +type RouteTargetDestination struct { + *DestinationDefault +} + +func NewRouteTargetDestination(nlri bgp.AddrPrefixInterface) *RouteTargetDestination { + d := NewDestinationDefault(nlri) + d.ROUTE_FAMILY = bgp.RF_RTC_UC + return &RouteTargetDestination{ + DestinationDefault: d, + } +} |