mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-05 08:28:32 +00:00
nd6: update addr_hint only if the index has actually changed
This commit is contained in:
parent
4c15191b1d
commit
177bb6ca06
@ -2008,14 +2008,13 @@ nd6_get_next_hop_entry(const ip6_addr_t *ip6addr, struct netif *netif)
|
|||||||
ip6_addr_copy(destination_cache[nd6_cached_destination_index].next_hop_addr, default_router_list[i].neighbor_entry->next_hop_address);
|
ip6_addr_copy(destination_cache[nd6_cached_destination_index].next_hop_addr, default_router_list[i].neighbor_entry->next_hop_address);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
#if LWIP_NETIF_HWADDRHINT
|
#if LWIP_NETIF_HWADDRHINT
|
||||||
if (netif->hints != NULL) {
|
if (netif->hints != NULL) {
|
||||||
/* per-pcb cached entry was given */
|
/* per-pcb cached entry was given */
|
||||||
netif->hints->addr_hint = nd6_cached_destination_index;
|
netif->hints->addr_hint = nd6_cached_destination_index;
|
||||||
}
|
}
|
||||||
#endif /* LWIP_NETIF_HWADDRHINT */
|
#endif /* LWIP_NETIF_HWADDRHINT */
|
||||||
|
}
|
||||||
|
|
||||||
/* Look in neighbor cache for the next-hop address. */
|
/* Look in neighbor cache for the next-hop address. */
|
||||||
if (ip6_addr_cmp(&(destination_cache[nd6_cached_destination_index].next_hop_addr),
|
if (ip6_addr_cmp(&(destination_cache[nd6_cached_destination_index].next_hop_addr),
|
||||||
|
Loading…
Reference in New Issue
Block a user