TODO: Minor clarification.

This commit is contained in:
Gregory Nutt
2018-11-11 08:03:45 -06:00
parent 591b03aa7d
commit f14cf966c9
+5 -5
View File
@@ -1493,13 +1493,13 @@ o Network (net/, drivers/net)
Description: The MLD implementation does not follow the RFC correct 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 since all groups are queried at once.
Instead, the design currently uses a Multicast Address Specific
Query with one timer per group and ignores groups that we are
not members of.
driven by a single timer per network device since all groups on
the sub-net are queried at once. Instead, the design currently
uses 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.
separate timer per network device, not a per-group timer.
Status: Open
Priority: Low. There are no customers of MLD as far as I know.