[Ns-developers] Found the bug.
Primantara HT
prima_at_ub at yahoo.com
Wed Apr 29 19:18:43 PDT 2009
Dear,
I finally found the bug which inhibits multicast.
It is in ipv6-l3-protocol.cc, in function Send(...). There is
***the bug :
if (dst.IsAllNodesMulticast() || dst.IsSolicitatedMulticast() || dst.IsAllRoutersMulticast() || dst.IsAllHostsMulticast() || dst.IsLinkLocal())
{
....
}
***it should be :
if (dst.IsAllNodesMulticast() || dst.IsSolicitatedMulticast() || dst.IsAllRoutersMulticast() || dst.IsAllHostsMulticast() || dst.IsLinkLocal() || dst.IsMulticast())
^^^^^^^^^^^^^^^^^
And it is OK now...
Regards,
Prim
More information about the Ns-developers
mailing list