mirror of
https://github.com/apache/nuttx.git
synced 2026-05-30 13:27:01 +08:00
net/igmp and net/mld: Fix problem when both IGMP and MLD are enabled. The cannot share the same group list in the network devices structure.
This commit is contained in:
@@ -196,7 +196,7 @@ void igmp_input(struct net_driver_s *dev)
|
||||
}
|
||||
|
||||
IGMP_STATINCR(g_netstats.igmp.query_received);
|
||||
for (member = (FAR struct igmp_group_s *)dev->grplist.head;
|
||||
for (member = (FAR struct igmp_group_s *)dev->d_igmp_grplist.head;
|
||||
member;
|
||||
member = member->next)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user