diff options
Diffstat (limited to 'zebra/zebra_vxlan_null.c')
| -rw-r--r-- | zebra/zebra_vxlan_null.c | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/zebra/zebra_vxlan_null.c b/zebra/zebra_vxlan_null.c index 23bbddfcea..75aab40870 100644 --- a/zebra/zebra_vxlan_null.c +++ b/zebra/zebra_vxlan_null.c @@ -30,6 +30,63 @@ #include "zebra/zebra_l2.h" #include "zebra/zebra_vxlan.h" +void +zebra_vxlan_print_macs_vni (struct vty *vty, struct zebra_vrf *zvrf, vni_t vni) +{ +} + +void zebra_vxlan_print_macs_all_vni (struct vty *vty, struct zebra_vrf *zvrf) +{ +} + +void zebra_vxlan_print_macs_all_vni_vtep (struct vty *vty, struct zebra_vrf *zvrf, struct in_addr vtep_ip) +{ +} + +void +zebra_vxlan_print_specific_mac_vni (struct vty *vty, struct zebra_vrf *zvrf, + vni_t vni, struct ethaddr *mac) +{ +} + +void +zebra_vxlan_print_macs_vni_vtep (struct vty *vty, struct zebra_vrf *zvrf, + vni_t vni, struct in_addr vtep_ip) +{ +} + +void +zebra_vxlan_print_neigh_vni (struct vty *vty, struct zebra_vrf *zvrf, + vni_t vni) +{ +} + +void +zebra_vxlan_print_neigh_all_vni (struct vty *vty, struct zebra_vrf *zvrf) +{ +} + +void +zebra_vxlan_print_specific_neigh_vni (struct vty *vty, struct zebra_vrf *zvrf, + vni_t vni, struct ipaddr *ip) +{ +} + +void zebra_vxlan_print_neigh_vni_vtep (struct vty *vty, struct zebra_vrf *zvrf, + vni_t vni, struct in_addr vtep_ip) +{ +} + +void +zebra_vxlan_print_vni (struct vty *vty, struct zebra_vrf *zvrf, vni_t vni) +{ +} + +void +zebra_vxlan_print_vnis (struct vty *vty, struct zebra_vrf *zvrf) +{ +} + int zebra_vxlan_svi_up (struct interface *ifp, struct interface *link_if) { return 0; |
