Skip to content

Commit

Permalink
gnrc/ipv6/nib: don't do multicast neighbor solicitation on 6LoWPAN
Browse files Browse the repository at this point in the history
  • Loading branch information
benpicco committed Nov 3, 2023
1 parent c0ae75b commit 525c0e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sys/net/gnrc/network_layer/ipv6/nib/nib.c
Original file line number Diff line number Diff line change
Expand Up @@ -1397,7 +1397,8 @@ static bool _resolve_addr(const ipv6_addr_t *dst, gnrc_netif_t *netif,
return false;
}

if (IS_ACTIVE(CONFIG_GNRC_IPV6_NIB_ARSM)) {
/* don't send multicast neighbor solicitation on 6lo */
if (!gnrc_netif_is_6lo(netif)) {
_probe_nbr(entry, reset);
}

Expand Down

0 comments on commit 525c0e8

Please sign in to comment.