diff options
author | Sri Mohana Singamsetty <srimohans@gmail.com> | 2019-03-01 18:15:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-01 18:15:26 +0100 |
commit | 29da198289f6a724349444b1cf7f10ab0f4469ed (patch) | |
tree | 8ddde7f5f84b23dfc414147eeeb734e997ac84b1 /lib | |
parent | Merge pull request #3743 from NaveenThanikachalam/2990_New (diff) | |
parent | *: Explicitly mark nexthop of EVPN-sourced routes as onlink (diff) | |
download | frr-29da198289f6a724349444b1cf7f10ab0f4469ed.tar.xz frr-29da198289f6a724349444b1cf7f10ab0f4469ed.zip |
Merge pull request #3882 from vivek-cumulus/refine_evpn_route_add
Refine install of EVPN-based routes to remove some special handling
Diffstat (limited to 'lib')
-rw-r--r-- | lib/nexthop.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/nexthop.h b/lib/nexthop.h index c79ec590a..fd27ca207 100644 --- a/lib/nexthop.h +++ b/lib/nexthop.h @@ -83,7 +83,6 @@ struct nexthop { #define NEXTHOP_FLAG_MATCHED (1 << 4) /* Already matched vs a nexthop */ #define NEXTHOP_FLAG_FILTERED (1 << 5) /* rmap filtered, used by static only */ #define NEXTHOP_FLAG_DUPLICATE (1 << 6) /* nexthop duplicates another active one */ -#define NEXTHOP_FLAG_EVPN_RVTEP (1 << 7) /* EVPN remote vtep nexthop */ #define NEXTHOP_IS_ACTIVE(flags) \ (CHECK_FLAG(flags, NEXTHOP_FLAG_ACTIVE) \ && !CHECK_FLAG(flags, NEXTHOP_FLAG_DUPLICATE)) |