[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

(usagi-users 03180) Re: netfilter6: ICMPv6 type 143 doesn't match



In article <200412270417.iBR4HZRG021429@xxxxxxxxxxxxx> (at Mon, 27 Dec 2004 13:17:34 +0900 (JST)), Yasuyuki Kozakai <yasuyuki.kozakai@xxxxxxxxxxxxx> says:

>  
> -		ptr = IPV6_HDR_LEN;
> +		ptr = ((u8*)skb->nh.ipv6h - skb->data) + IPV6_HDR_LEN;
>  

IMHO, skb->nh.ipv6h does not points ipv6 header anymore;
it should be skb->nh.raw in this case.

--yoshfuji