1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #20046 from benpicco/6lo_multicast_ns

gnrc/ipv6/nib: don't do multicast address resolution on 6LoWPAN
This commit is contained in:
benpicco 2023-11-10 12:23:21 +00:00 committed by GitHub
commit d783aa8176
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 do multicast address resolution on 6lo */
if (!gnrc_netif_is_6ln(netif)) {
_probe_nbr(entry, reset);
}