6fe4721bfd6778953b4d0db294064a3782a83180
[sliver-openvswitch.git] / datapath / linux-2.6 / compat-2.6 / 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 #endif