summaryrefslogtreecommitdiffhomepage
path: root/server/grpc_server.go
diff options
context:
space:
mode:
authorISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2015-05-01 10:06:42 +0000
committerISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2015-05-01 10:16:09 +0000
commit232b30117c8eafc5cae7aec81ce9fafe742bdd4b (patch)
tree235342a7345b6034f02a1864485a4c96e25d3ea2 /server/grpc_server.go
parentcea5941db2dd9268ad35b5f494480350d747d404 (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 'server/grpc_server.go')
-rw-r--r--server/grpc_server.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/grpc_server.go b/server/grpc_server.go
index 01acaf3d..c218a4ac 100644
--- a/server/grpc_server.go
+++ b/server/grpc_server.go
@@ -56,6 +56,8 @@ func convertAf2Rf(af *api.AddressFamily) (bgp.RouteFamily, error) {
return bgp.RF_EVPN, nil
} else if af.Equal(api.AF_ENCAP) {
return bgp.RF_ENCAP, nil
+ } else if af.Equal(api.AF_RTC) {
+ return bgp.RF_RTC_UC, nil
}
return bgp.RouteFamily(0), fmt.Errorf("unsupported address family: %v", af)