diff options
author | John Lo <loj@cisco.com> | 2018-03-13 21:53:18 -0400 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2018-03-14 12:07:48 +0000 |
commit | e23c99ec0061991cf3904122979ac755fe1b78ca (patch) | |
tree | 9ffa879cbdc7721138e5c0833605c7a060bebf52 /src/vat/api_format.c | |
parent | 04def7418b649a94e32149ee924a3743358b5c84 (diff) |
Improve l2_macs_events API to provide MAC move information
Change mac_entry layout in l2_macs_event API message so the MAC
entry can be either add, delete or move where the sw_if_index of
an existing MAC entry changed. Also added a 8-bit flags field
in mac_entry for any future expansion.
Change-Id: I3bf9e1cf2556f2938202025a5d0772c2ce2fc99f
Signed-off-by: John Lo <loj@cisco.com>
Diffstat (limited to 'src/vat/api_format.c')
-rw-r--r-- | src/vat/api_format.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vat/api_format.c b/src/vat/api_format.c index 7bb463c867f..97e67f9d80b 100644 --- a/src/vat/api_format.c +++ b/src/vat/api_format.c @@ -1348,9 +1348,9 @@ vl_api_l2_macs_event_t_handler (vl_api_l2_macs_event_t * mp) for (i = 0; i < n_macs; i++) { vl_api_mac_entry_t *mac = &mp->mac[i]; - errmsg (" [%d] sw_if_index %d mac_addr %U is_del %d \n", + errmsg (" [%d] sw_if_index %d mac_addr %U action %d \n", i + 1, ntohl (mac->sw_if_index), - format_ethernet_address, mac->mac_addr, mac->is_del); + format_ethernet_address, mac->mac_addr, mac->action); if (i == 1000) break; } |