diff options
author | Eyal Bari <ebari@cisco.com> | 2017-07-31 13:12:30 +0300 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2017-08-01 02:32:53 +0000 |
commit | 5b311202b82a827c712d2cb7604c56049266adc9 (patch) | |
tree | 9b1d62b6ee75dbf730667c80339b565e94e36495 /src/vnet/span/span.api | |
parent | b88566498a83209f8646e4a6b1d247e69dae2aeb (diff) |
SPAN/API:enable L2 dump
Change-Id: Icea1dff33aae35a85ae1a7ed1900a0abb3fe4b6b
Signed-off-by: Eyal Bari <ebari@cisco.com>
Diffstat (limited to 'src/vnet/span/span.api')
-rw-r--r-- | src/vnet/span/span.api | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vnet/span/span.api b/src/vnet/span/span.api index 2a762ac2582..03cd60ecf24 100644 --- a/src/vnet/span/span.api +++ b/src/vnet/span/span.api @@ -20,6 +20,7 @@ @param sw_if_index_from - interface to be mirorred @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 = mirror at hw device level, 1 = mirror at L2 */ autoreply define sw_interface_span_enable_disable { u32 client_index; @@ -33,10 +34,12 @@ autoreply define sw_interface_span_enable_disable { /** \brief SPAN dump request @param client_index - opaque cookie to identify the sender @param context - sender context, to match reply w/ request + @param is_l2 - 0 = hw device level, 1 = L2 */ define sw_interface_span_dump { u32 client_index; u32 context; + u8 is_l2; }; /** \brief Reply to SPAN dump request |