X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fl2%2Fl2.api;h=fc851e4203d194d20a056521a736225bfdf67e9d;hb=5daf0c55c;hp=7a1fb49341b407fb981a3d0e4846e528f1bb304a;hpb=0a4e0063f79490f134150a0cefe33600733f7d94;p=vpp.git diff --git a/src/vnet/l2/l2.api b/src/vnet/l2/l2.api index 7a1fb49341b..fc851e4203d 100644 --- a/src/vnet/l2/l2.api +++ b/src/vnet/l2/l2.api @@ -14,7 +14,10 @@ * limitations under the License. */ -option version = "2.0.1"; +option version = "2.1.2"; + +import "vnet/ip/ip_types.api"; +import "vnet/ethernet/ethernet_types.api"; /** \brief Reply to l2_xconnect_dump @param context - sender context which was passed in the request @@ -317,6 +320,7 @@ manual_print manual_endian define bridge_domain_details /** \brief Flags that can be changed on a bridge domain */ enum bd_flags { + BRIDGE_API_FLAG_NONE = 0x0, BRIDGE_API_FLAG_LEARN = 0x1, BRIDGE_API_FLAG_FWD = 0x2, BRIDGE_API_FLAG_FLOOD = 0x4, @@ -480,9 +484,19 @@ autoreply define bd_ip_mac_add_del u32 context; u32 bd_id; u8 is_add; - u8 is_ipv6; - u8 ip_address[16]; - u8 mac_address[6]; + vl_api_address_t ip; + vl_api_mac_address_t mac; +}; + +/** \brief Flush bridge domain IP to MAC entries + @param client_index - opaque cookie to identify the sender + @param bd_id - bridge domain identifier +*/ +autoreply define bd_ip_mac_flush +{ + u32 client_index; + u32 context; + u32 bd_id; }; /** \brief bridge domain IP to MAC entry details structure @@ -497,7 +511,7 @@ define bd_ip_mac_details u32 bd_id; u8 is_ipv6; u8 ip_address[16]; - u8 mac_address[6]; + vl_api_mac_address_t mac_address; }; /** \brief Dump bridge domain IP to MAC entries