diff options
Diffstat (limited to 'include/linux/ip.h')
-rw-r--r-- | include/linux/ip.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/ip.h b/include/linux/ip.h index f2f26db16f57..19578440b5fc 100644 --- a/include/linux/ip.h +++ b/include/linux/ip.h | |||
@@ -111,6 +111,11 @@ static inline struct iphdr *ip_hdr(const struct sk_buff *skb) | |||
111 | { | 111 | { |
112 | return (struct iphdr *)skb_network_header(skb); | 112 | return (struct iphdr *)skb_network_header(skb); |
113 | } | 113 | } |
114 | |||
115 | static inline struct iphdr *ipip_hdr(const struct sk_buff *skb) | ||
116 | { | ||
117 | return (struct iphdr *)skb->h.raw; | ||
118 | } | ||
114 | #endif | 119 | #endif |
115 | 120 | ||
116 | struct ip_auth_hdr { | 121 | struct ip_auth_hdr { |