On Mon, 27 Feb 2006, [EMAIL PROTECTED] wrote:
> In his sliedes you may see (it`s at the movie after 40m19s) that he said
> that all OS he tested answered ->
>
> Fragmentation and followring RA
don't know what you are talking about here
> Responding to packets from multicast adresses
No, see ip6_input.c line 249:
if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_src) ||
IN6_IS_ADDR_UNSPECIFIED(&ip6->ip6_dst)) {
/*
* XXX: "badscope" is not very suitable for a multicast source.
*/
ip6stat.ip6s_badscope++;
in6_ifstat_inc(m->m_pkthdr.rcvif, ifs6_in_addrerr);
goto bad;
}
> Responding to packets with multicast destination (FreeBSD/Linux, both use
> KAME if I`m not wrong)
No, see ip6_output.c line 435:
if (IN6_IS_ADDR_MULTICAST(&ip6->ip6_src)) {
error = EOPNOTSUPP;
ip6stat.ip6s_badscope++;
goto bad;
}
-d