diff options
author | Russ White <russ@riw.us> | 2022-06-23 13:00:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-23 13:00:33 +0200 |
commit | 98b3ab772e994ac39a005b144cc2fc6da535d345 (patch) | |
tree | 8733d372eb6b3c36ec4af5563fcdb9494ebb6fb6 /lib/nexthop.h | |
parent | Merge pull request #11437 from rgirada/ospf_nbr (diff) | |
parent | lib, zebra, bgpd: Move route EVPN flag to nexthop (diff) | |
download | frr-98b3ab772e994ac39a005b144cc2fc6da535d345.tar.xz frr-98b3ab772e994ac39a005b144cc2fc6da535d345.zip |
Merge pull request #10629 from leonshaw/fix/mp-evpn-nh
lib, zebra, bgpd: Move route EVPN flag to nexthop
Diffstat (limited to 'lib/nexthop.h')
-rw-r--r-- | lib/nexthop.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/nexthop.h b/lib/nexthop.h index c13f1b137..e324e5849 100644 --- a/lib/nexthop.h +++ b/lib/nexthop.h @@ -94,6 +94,7 @@ struct nexthop { #define NEXTHOP_FLAG_RNH_FILTERED (1 << 5) /* rmap filtered, used by rnh */ #define NEXTHOP_FLAG_HAS_BACKUP (1 << 6) /* Backup nexthop index is set */ #define NEXTHOP_FLAG_SRTE (1 << 7) /* SR-TE color used for BGP traffic */ +#define NEXTHOP_FLAG_EVPN (1 << 8) /* nexthop is EVPN */ #define NEXTHOP_IS_ACTIVE(flags) \ (CHECK_FLAG(flags, NEXTHOP_FLAG_ACTIVE) \ |