diff options
author | Pat Ruddy <pat@voltanet.io> | 2020-07-23 23:51:10 +0200 |
---|---|---|
committer | Pat Ruddy <pat@voltanet.io> | 2020-08-12 13:39:33 +0200 |
commit | 87d76d540337d191f3a708ad56014742ece7c2cc (patch) | |
tree | 3ae435cbde8fb110bfeea52035a38d370394aff7 /zebra/zebra_vrf.h | |
parent | tests: remove ifindex from VNI JSON comparison (diff) | |
download | frr-87d76d540337d191f3a708ad56014742ece7c2cc.tar.xz frr-87d76d540337d191f3a708ad56014742ece7c2cc.zip |
zebra: rename vni to evpn where appropriate
The main zebra_vni_t hash structure has been renamed to zebra_evpn_t
to allow for other transport underlays. Rename functions and variables
to reflect this change.
Signed-off-by: Pat Ruddy <pat@voltanet.io>
Diffstat (limited to 'zebra/zebra_vrf.h')
-rw-r--r-- | zebra/zebra_vrf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zebra_vrf.h b/zebra/zebra_vrf.h index d200f5a4c..910d19231 100644 --- a/zebra/zebra_vrf.h +++ b/zebra/zebra_vrf.h @@ -130,9 +130,9 @@ struct zebra_vrf { #define MPLS_FLAG_SCHEDULE_LSPS (1 << 0) /* - * VNI hash table (for EVPN). Only in the EVPN instance. + * EVPN hash table. Only in the EVPN instance. */ - struct hash *vni_table; + struct hash *evpn_table; /* * Whether EVPN is enabled or not. Only in the EVPN instance. |