Import from old repository commit 61ef2b42a9c4ba8e1600f15bb0236765edc2ad45.
[sliver-openvswitch.git] / datapath / linux-2.6 / compat-2.6 / include / linux / ip.h
1 #ifndef __LINUX_IP_WRAPPER_H
2 #define __LINUX_IP_WRAPPER_H 1
3
4 #include_next <linux/ip.h>
5
6 #ifndef HAVE_SKBUFF_HEADER_HELPERS
7 static inline struct iphdr *ip_hdr(const struct sk_buff *skb)
8 {
9         return (struct iphdr *)skb_network_header(skb);
10 }
11
12 static inline unsigned int ip_hdrlen(const struct sk_buff *skb)
13 {
14         return ip_hdr(skb)->ihl * 4;
15 }
16 #endif /* !HAVE_SKBUFF_HEADER_HELPERS */
17
18 #endif