From e016b5e3fbfb86d7453d323c5a277244413b11a4 Mon Sep 17 00:00:00 2001 From: John Lo Date: Fri, 2 Sep 2016 00:13:41 -0400 Subject: VPP-358: Add IPv6 ND Event Notification and Termination Additional fix to vpp_api_test to show which kind of arp/ip6-nd event is received, whether it is address resolution or mac/ip binding. Change-Id: Ic65b895cd1bfbe2f34d1b68891a1a580852fbcdb Signed-off-by: John Lo --- vpp-api-test/vat/api_format.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'vpp-api-test') diff --git a/vpp-api-test/vat/api_format.c b/vpp-api-test/vat/api_format.c index b9cfd751e20..52d037891e5 100644 --- a/vpp-api-test/vat/api_format.c +++ b/vpp-api-test/vat/api_format.c @@ -1151,7 +1151,8 @@ static void vl_api_ip4_arp_event_t_handler (vl_api_ip4_arp_event_t * mp) { vat_main_t *vam = &vat_main; - errmsg ("arp event: address %U new mac %U sw_if_index %d\n", + errmsg ("arp %s event: address %U new mac %U sw_if_index %d\n", + mp->mac_ip ? "mac/ip binding" : "address resolution", format_ip4_address, &mp->address, format_ethernet_address, mp->new_mac, mp->sw_if_index); } @@ -1166,7 +1167,8 @@ static void vl_api_ip6_nd_event_t_handler (vl_api_ip6_nd_event_t * mp) { vat_main_t *vam = &vat_main; - errmsg ("ip6 nd event: address %U new mac %U sw_if_index %d\n", + errmsg ("ip6 nd %s event: address %U new mac %U sw_if_index %d\n", + mp->mac_ip ? "mac/ip binding" : "address resolution", format_ip6_address, mp->address, format_ethernet_address, mp->new_mac, mp->sw_if_index); } -- cgit 1.2.3-korg