Initial import
[sliver-openvswitch.git] / datapath / linux-2.6 / compat-2.6 / include / linux / ipv6.h
1 #ifndef __LINUX_IPV6_WRAPPER_H
2 #define __LINUX_IPV6_WRAPPER_H 1
3
4 #include_next <linux/ipv6.h>
5
6 #include <linux/version.h>
7 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
8
9 #ifdef __KERNEL__
10 #include <linux/skbuff.h>
11
12 static inline struct ipv6hdr *ipv6_hdr(const struct sk_buff *skb)
13 {
14         return (struct ipv6hdr *)skb_network_header(skb);
15 }
16 #endif /* __KERNEL__ */
17
18 #endif /* linux kernel < 2.6.22 */
19
20 #endif