datapath: enable encap for capwap.
[openvswitch] / datapath / linux / compat / include / linux / udp.h
1 #ifndef __LINUX_UDP_WRAPPER_H
2 #define __LINUX_UDP_WRAPPER_H 1
3
4 #include_next <linux/udp.h>
5
6 #ifndef HAVE_SKBUFF_HEADER_HELPERS
7 static inline struct udphdr *udp_hdr(const struct sk_buff *skb)
8 {
9         return (struct udphdr *)skb_transport_header(skb);
10 }
11 #endif /* HAVE_SKBUFF_HEADER_HELPERS */
12
13 #if LINUX_VERSION_CODE < KERNEL_VERSION(3,5,0)
14 static inline void udp_encap_enable(void)
15 {
16 }
17 #endif
18 #endif