X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fl2%2Fl2.api;h=b0ac23f705a4896a156f95d7e2eef6c2f759d638;hb=0f8d10035;hp=416874d94c2d25da11d6d3829214c571ca07bf95;hpb=df87f8092f5b6b54eef0d5acf3c27c2e398a401a;p=vpp.git diff --git a/src/vnet/l2/l2.api b/src/vnet/l2/l2.api index 416874d94c2..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, @@ -247,6 +277,33 @@ autoreply define bridge_domain_set_mac_age u8 mac_age; }; +/** \brief L2 bridge domain set default learn limit + @param client_index - opaque cookie to identify the sender + @param context - sender context, to match reply w/ request + @param learn limit - maximum number of entries by default for bridge domains +*/ +autoreply define bridge_domain_set_default_learn_limit +{ + u32 client_index; + u32 context; + u32 learn_limit; +}; + + +/** \brief L2 bridge domain set learn limit + @param client_index - opaque cookie to identify the sender + @param context - sender context, to match reply w/ request + @param bd_id - the bridge domain idenntifier + @param learn limit - maximum number of entries for this bd +*/ +autoreply define bridge_domain_set_learn_limit +{ + u32 client_index; + u32 context; + u32 bd_id; + u32 learn_limit; +}; + /** \brief L2 bridge domain add or delete request @param client_index - opaque cookie to identify the sender @param context - sender context, to match reply w/ request