X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Finterface.api;h=1db5ef34c3af8ce7940a81ff8304a8f55cdb7a8c;hb=de312c2d5;hp=ff0946538f49829cb1760108ec4a527fa489f7fd;hpb=75761b933f3e28494bae4b2cf5636a07ffe6ce18;p=vpp.git diff --git a/src/vnet/interface.api b/src/vnet/interface.api index ff0946538f4..1db5ef34c3a 100644 --- a/src/vnet/interface.api +++ b/src/vnet/interface.api @@ -14,7 +14,7 @@ * limitations under the License. */ -option version = "3.1.0"; +option version = "3.2.0"; import "vnet/interface_types.api"; import "vnet/ethernet/ethernet_types.api"; @@ -131,6 +131,7 @@ autoreply define want_interface_events @param pbb_b_vlanid - B-tag vlanid @param pbb_i_sid - I-tag service id @param interface_name - name of the interface + @param interface_dev_type - device type of the interface @param tag - an ascii tag */ define sw_interface_details @@ -186,6 +187,7 @@ define sw_interface_details /* Interface name */ string interface_name[64]; + string interface_dev_type[64]; string tag[64]; }; @@ -310,6 +312,22 @@ autoreply define sw_interface_tag_add_del string tag[64]; }; +/** \brief Add or delete a secondary MAC address on an interface + @param client_index - opaque cookie to identify the sender + @param context - sender context, to match reply w/ request + @param sw_if_index - the interface whose MAC will be set + @param mac_addr - the new MAC address + @param is_add - 0 to delete, != 0 to add +*/ +autoreply define sw_interface_add_del_mac_address +{ + u32 client_index; + u32 context; + u32 sw_if_index; + vl_api_mac_address_t addr; + u8 is_add; +}; + /** \brief Set an interface's MAC address @param client_index - opaque cookie to identify the sender @param context - sender context, to match reply w/ request