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/ip6-nd/ip6_ra.c | |
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/ip6-nd/ip6_ra.c')
-rw-r--r-- | src/vnet/ip6-nd/ip6_ra.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/vnet/ip6-nd/ip6_ra.c b/src/vnet/ip6-nd/ip6_ra.c index 2bfa4251480..97c5b4a2837 100644 --- a/src/vnet/ip6-nd/ip6_ra.c +++ b/src/vnet/ip6-nd/ip6_ra.c @@ -368,11 +368,15 @@ icmp6_router_solicitation (vlib_main_t * vm, if (PREDICT_TRUE (error0 == ICMP6_ERROR_NONE && o0 != 0 && !is_unspecified && !is_link_local)) { + /* *INDENT-OFF* */ ip_neighbor_learn_t learn = { - .type = IP46_TYPE_IP6, .sw_if_index = sw_if_index0, - .ip.ip6 = ip0->src_address, + .ip = { + .ip.ip6 = ip0->src_address, + .version = AF_IP6, + }, }; + /* *INDENT-ON* */ memcpy (&learn.mac, o0->ethernet_address, sizeof (learn.mac)); ip_neighbor_learn_dp (&learn); } |