ip: Replace Sematics for Interface IP addresses
[vpp.git] / src / plugins / gbp / gbp_bridge_domain.h
index 5bfa099..0449240 100644 (file)
 #define __GBP_BRIDGE_DOMAIN_H__
 
 #include <plugins/gbp/gbp_types.h>
+#include <plugins/gbp/gbp_itf.h>
 
 #include <vnet/fib/fib_types.h>
+#include <vnet/l2/l2_bd.h>
 
 /**
  * Bridge Domain Flags
@@ -69,7 +71,7 @@ typedef struct gbp_bridge_domain_t_
   /**
    * The BD's interface to sned Broadcast and multicast packets
    */
-  u32 gb_bm_flood_sw_if_index;
+  gbp_itf_hdl_t gb_bm_flood_itf;
 
   /**
    * The index of the BD's VNI interface on which packets from
@@ -84,6 +86,13 @@ typedef struct gbp_bridge_domain_t_
   u32 gb_locks;
 } gbp_bridge_domain_t;
 
+extern void gbp_bridge_domain_itf_add (index_t gbdi,
+                                      u32 sw_if_index,
+                                      l2_bd_port_type_t type);
+extern void gbp_bridge_domain_itf_del (index_t gbdi,
+                                      u32 sw_if_index,
+                                      l2_bd_port_type_t type);
+
 extern int gbp_bridge_domain_add_and_lock (u32 bd_id,
                                           u32 rd_id,
                                           gbp_bridge_domain_flags_t flags,