interface: Add promisc on/off in api
[vpp.git] / src / vnet / interface.api
index c262cd6..38dc432 100644 (file)
@@ -40,6 +40,20 @@ autoreply define sw_interface_set_flags
   vl_api_if_status_flags_t flags;
 };
 
+/** \brief Set interface promiscuous mode
+    @param client_index - opaque cookie to identify the sender
+    @param context - sender context, to match reply w/ request
+    @param sw_if_index - index of the interface to set flags on
+    @param promisc_on - promiscuous mode is on ?
+*/
+autoreply define sw_interface_set_promisc
+{
+  u32 client_index;
+  u32 context;
+  vl_api_interface_index_t sw_if_index;
+  bool promisc_on;
+};
+
 /** \brief Set interface physical MTU
     @param client_index - opaque cookie to identify the sender
     @param context - sender context, to match reply w/ request