|
@@ -406,10 +406,12 @@ static int raw_send_hdrinc(struct sock *sk, struct flowi4 *fl4,
|
|
|
ip_select_ident(net, skb, NULL);
|
|
|
|
|
|
iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
|
|
|
+ skb->transport_header += iphlen;
|
|
|
+ if (iph->protocol == IPPROTO_ICMP &&
|
|
|
+ length >= iphlen + sizeof(struct icmphdr))
|
|
|
+ icmp_out_count(net, ((struct icmphdr *)
|
|
|
+ skb_transport_header(skb))->type);
|
|
|
}
|
|
|
- if (iph->protocol == IPPROTO_ICMP)
|
|
|
- icmp_out_count(net, ((struct icmphdr *)
|
|
|
- skb_transport_header(skb))->type);
|
|
|
|
|
|
err = NF_HOOK(NFPROTO_IPV4, NF_INET_LOCAL_OUT,
|
|
|
net, sk, skb, NULL, rt->dst.dev,
|