diff options
author | Neale Ranns <nranns@cisco.com> | 2018-10-24 02:57:49 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-11-06 21:23:18 +0000 |
commit | 4d5b917b1a74461abaa30182d4bf5c7761572323 (patch) | |
tree | a92e08d4de07934dcb49c63661e0ddd74ad0c5a6 /src/vnet/l2/l2.api | |
parent | 65ed2d0503bc8d9a6a66ca1ece87e3e876ff95cc (diff) |
BD ARP entry use common API types
Change-Id: I29f20dbaf2c2d735faff297cee552ed648f6f61b
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/l2/l2.api')
-rw-r--r-- | src/vnet/l2/l2.api | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/vnet/l2/l2.api b/src/vnet/l2/l2.api index 7a1fb49341b..8b65bc36afc 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.1"; + +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 @@ -481,8 +484,8 @@ autoreply define bd_ip_mac_add_del 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 bridge domain IP to MAC entry details structure |