X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Flinux%2Ficmp.h;h=474f2a51cf0af66474be229b626403975a36683c;hb=fc23af34b00ef444eec088f744983b9ca6c7f5d1;hp=878cfe4e587f29d0d5dd3129180227bed8bf8990;hpb=63c422afe3739b68bec0b5c42807d1450c951caf;p=pandora-kernel.git diff --git a/include/linux/icmp.h b/include/linux/icmp.h index 878cfe4e587f..474f2a51cf0a 100644 --- a/include/linux/icmp.h +++ b/include/linux/icmp.h @@ -68,7 +68,7 @@ struct icmphdr { __u8 type; __u8 code; - __be16 checksum; + __sum16 checksum; union { struct { __be16 id; @@ -82,6 +82,15 @@ struct icmphdr { } un; }; +#ifdef __KERNEL__ +#include + +static inline struct icmphdr *icmp_hdr(const struct sk_buff *skb) +{ + return (struct icmphdr *)skb_transport_header(skb); +} +#endif + /* * constants for (set|get)sockopt */