X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=blobdiff_plain;f=src%2Fvnet%2Fl2%2Fl2.api;h=b0ac23f705a4896a156f95d7e2eef6c2f759d638;hp=ef830827e1ce45329466b89c8fd76fb6db6fdde9;hb=0f8d10035;hpb=23f41d789c54bd8d9b87db8cf43d0235c5699da4 diff --git a/src/vnet/l2/l2.api b/src/vnet/l2/l2.api index ef830827e1c..b0ac23f705a 100644 --- a/src/vnet/l2/l2.api +++ b/src/vnet/l2/l2.api @@ -14,7 +14,7 @@ * limitations under the License. */ -option version = "3.0.0"; +option version = "3.1.0"; import "vnet/ip/ip_types.api"; import "vnet/ethernet/ethernet_types.api"; @@ -151,6 +151,7 @@ autoreply define l2fib_add_del */ autoreply define want_l2_macs_events { + option deprecated; u32 client_index; u32 context; u32 learn_limit [default=1000]; @@ -160,6 +161,35 @@ autoreply define want_l2_macs_events u32 pid; }; +/** \brief Register to receive L2 MAC events for learned and aged MAC + @param client_index - opaque cookie to identify the sender + @param context - sender context, to match reply w/ request + @param max_macs_in_event - in units of 10 mac entries + @param enable_disable - 1 => register for MAC events, 0 => cancel registration + @param pid - sender's pid +*/ +autoreply define want_l2_macs_events2 +{ + u32 client_index; + u32 context; + u8 max_macs_in_event [default=10]; + bool enable_disable [default=true]; + u32 pid; +}; + +/** \brief set l2 table scan delay + @param client_index - opaque cookie to identify the sender + @param context - sender context, to match reply w/ request + @param scan_delay - event scan delay in 10 msec unit +*/ +autoreply define l2fib_set_scan_delay +{ + u32 client_index; + u32 context; + u16 scan_delay [default=10]; +}; + + enum mac_event_action { MAC_EVENT_ACTION_API_ADD = 0,