Skip to content

Commit b8b5738

Browse files
rluboscarlescufi
authored andcommitted
net: openthread: Skip solicited-node mcast addresses creation
Thread network makes no use of Solicited-node multicast addresses, thereby do no create them on the interface to save multicast address entries for important ones. Signed-off-by: Robert Lubos <[email protected]>
1 parent 7acafda commit b8b5738

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/net/l2/openthread/openthread.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ void ieee802154_init(struct net_if *iface)
535535

536536
static enum net_l2_flags openthread_flags(struct net_if *iface)
537537
{
538-
return NET_L2_MULTICAST;
538+
return NET_L2_MULTICAST | NET_L2_MULTICAST_SKIP_JOIN_SOLICIT_NODE;
539539
}
540540

541541
static int openthread_enable(struct net_if *iface, bool state)

0 commit comments

Comments
 (0)