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 <loj@cisco.com>
This commit is contained in:
John Lo
2016-09-02 00:13:41 -04:00
committed by Dave Barach
parent c27213a30f
commit e016b5e3fb

View File

@ -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);
}