SPAN: Add 'is_l2" flag to DETAILS response messages.
[vpp.git] / src / vnet / span / span.api
index 03cd60e..7b2e47c 100644 (file)
@@ -14,6 +14,8 @@
  * limitations under the License.
  */
 
+option version = "1.0.0";
+
  /** \brief Enable/Disable span to mirror traffic from one interface to another
     @param client_index - opaque cookie to identify the sender
     @param context - sender context which was passed in the request
@@ -47,10 +49,12 @@ define sw_interface_span_dump {
     @param sw_if_index_from - mirorred interface
     @param sw_if_index_to - interface where the traffic is mirrored
     @param state - 0 = disabled, 1 = rx enabled, 2 = tx enabled, 3 tx & rx enabled
+    @param is_l2 - 0 = mirrored at hw device level, 1 = mirrored at l2
 */
 define sw_interface_span_details {
     u32 context;
     u32 sw_if_index_from;
     u32 sw_if_index_to;
     u8 state;
+    u8 is_l2;
 };