mirror of
https://github.com/apache/nuttx.git
synced 2026-08-31 14:13:04 +00:00
The MLD implementation did not follow the RFC correctly when it is the Querier. The Querier should use a general query and get query messages from all members of all groups. This would be driven by a single timer per sub-nset since all groups are queried at once. Instead, the design used a Multicast Address Specific Query with one timer per group and ignores groups that we are not members of.
Similary, the MLDv1 compatibility timer should be a single, separate timer, not a per-group timer.
net/mld: Group may be NULL when sending a general query
|
||
|---|---|---|
| .. | ||
| Kconfig | ||
| Make.defs | ||
| mld.h | ||
| mld_done.c | ||
| mld_group.c | ||
| mld_initialize.c | ||
| mld_join.c | ||
| mld_leave.c | ||
| mld_mcastmac.c | ||
| mld_msg.c | ||
| mld_poll.c | ||
| mld_query.c | ||
| mld_report.c | ||
| mld_send.c | ||
| mld_timer.c | ||