diff options
author | Sharath Ramamurthy <sramamurthy@nvidia.com> | 2021-07-27 10:10:48 +0200 |
---|---|---|
committer | Stephen Worley <sworley@nvidia.com> | 2023-02-14 00:12:04 +0100 |
commit | 0adeb5fdf46fe23a85924d04f2f02ee0be3cce6a (patch) | |
tree | aa5d70622d9f3a621a1669dce5d5ca0c188c1bc1 /zebra/zebra_vxlan_private.h | |
parent | zebra: single vxlan device dataplace vni update changes (diff) | |
download | frr-0adeb5fdf46fe23a85924d04f2f02ee0be3cce6a.tar.xz frr-0adeb5fdf46fe23a85924d04f2f02ee0be3cce6a.zip |
zebra: vxlan interface refactoring changes
This change refactors the zebra_vxlan_if related functionality
to a new zebra_vxlan_if.c file. zebra_vxlan_if_up/down,
zebra_vxlan_if_add/update/del is moved zebra_vxlan_if.c
Signed-off-by: Sharath Ramamurthy <sramamurthy@nvidia.com>
Diffstat (limited to 'zebra/zebra_vxlan_private.h')
-rw-r--r-- | zebra/zebra_vxlan_private.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/zebra/zebra_vxlan_private.h b/zebra/zebra_vxlan_private.h index 9161348b1..6da45b214 100644 --- a/zebra/zebra_vxlan_private.h +++ b/zebra/zebra_vxlan_private.h @@ -29,6 +29,7 @@ #include "if.h" #include "linklist.h" #include "zebra_vxlan.h" +#include "zebra_vxlan_if.h" #include "zebra_evpn.h" #include "zebra_evpn_mac.h" @@ -266,5 +267,6 @@ extern void zebra_vxlan_sg_deref(struct in_addr local_vtep_ip, struct in_addr mcast_grp); extern void zebra_vxlan_process_l3vni_oper_up(struct zebra_l3vni *zl3vni); extern void zebra_vxlan_process_l3vni_oper_down(struct zebra_l3vni *zl3vni); +extern int zebra_evpn_vxlan_del(struct zebra_evpn *zevpn); #endif /* _ZEBRA_VXLAN_PRIVATE_H */ |