diff options
author | Neale Ranns <nranns@cisco.com> | 2020-08-20 08:22:56 +0000 |
---|---|---|
committer | Ole Tr�an <otroan@employees.org> | 2020-11-20 10:27:01 +0000 |
commit | dc617b8df442f3e25197ec64ffd58d11411b0470 (patch) | |
tree | a573462413e12b71d71515f84e53900686424917 /src/vnet/bonding | |
parent | d01d2ce4498dae4cbcba65784babe91d56d4bae9 (diff) |
ip-neighbor: Use ip_address_t rather than ip46_address_t
Type: improvement
Change-Id: Ica5f395075677bda5f38d28e704f65350af88610
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/bonding')
-rw-r--r-- | src/vnet/bonding/device.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vnet/bonding/device.c b/src/vnet/bonding/device.c index 7ce5ad87bd7..e14d08a2f9e 100644 --- a/src/vnet/bonding/device.c +++ b/src/vnet/bonding/device.c @@ -25,6 +25,8 @@ #include <vppinfra/lb_hash_hash.h> #include <vnet/ip/ip.h> #include <vnet/ip-neighbor/ip_neighbor.h> +#include <vnet/ip-neighbor/ip4_neighbor.h> +#include <vnet/ip-neighbor/ip6_neighbor.h> #define foreach_bond_tx_error \ _(NONE, "no error") \ @@ -801,7 +803,8 @@ bond_active_interface_switch_cb (vnet_main_t * vnm, u32 sw_if_index, { bond_main_t *bm = &bond_main; - ip_neighbor_advertise (bm->vlib_main, IP46_TYPE_BOTH, NULL, sw_if_index); + ip4_neighbor_advertise (bm->vlib_main, bm->vnet_main, sw_if_index, NULL); + ip6_neighbor_advertise (bm->vlib_main, bm->vnet_main, sw_if_index, NULL); return (WALK_CONTINUE); } |