vxlan: vxlan/vxlan.api API cleanup
[vpp.git] / extras / vom / vom / gbp_bridge_domain_cmds.hpp
index e7c501f..6dbe6dc 100644 (file)
@@ -35,8 +35,11 @@ public:
    * Constructor
    */
   create_cmd(HW::item<uint32_t>& item,
+             u32 rd_id,
              const handle_t bvi,
-             const handle_t uu_fwd);
+             const handle_t uu_fwd,
+             const handle_t bm_flood,
+             const gbp_bridge_domain::flags_t& flags);
 
   /**
    * Issue the command to VPP/HW
@@ -53,8 +56,11 @@ public:
   bool operator==(const create_cmd& i) const;
 
 private:
+  u32 m_rd_id;
   const handle_t m_bvi;
   const handle_t m_uu_fwd;
+  const handle_t m_bm_flood;
+  const gbp_bridge_domain::flags_t& m_flags;
 };
 
 /**