diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-05-02 19:22:42 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-05-17 02:27:08 +0200 |
commit | 303b93cdee4c2f2d7966b4bf92fb46ca0feb35d7 (patch) | |
tree | 19233a22946e069d1c0561a937118e0566b715c7 /zebra | |
parent | vrrpd: add 'show vrrp summary' command (diff) | |
download | frr-303b93cdee4c2f2d7966b4bf92fb46ca0feb35d7.tar.xz frr-303b93cdee4c2f2d7966b4bf92fb46ca0feb35d7.zip |
zebra: update zebra_rib for vrrp
VRRP doesn't install any routes, but should still have an array entry.
Also add a help string for VRRP to route_types.txt
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'zebra')
-rw-r--r-- | zebra/zebra_rib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 8d4f49e3e..3b305f6e3 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -101,6 +101,7 @@ static const struct { [ZEBRA_ROUTE_PBR] = {ZEBRA_ROUTE_PBR, 200, 4}, [ZEBRA_ROUTE_BFD] = {ZEBRA_ROUTE_BFD, 255, 4}, [ZEBRA_ROUTE_OPENFABRIC] = {ZEBRA_ROUTE_OPENFABRIC, 115, 2}, + [ZEBRA_ROUTE_VRRP] = {ZEBRA_ROUTE_VRRP, 255, 4} /* Any new route type added to zebra, should be mirrored here */ /* no entry/default: 150 */ |