summaryrefslogtreecommitdiff
path: root/datapath/linux-2.6/compat-2.6/include/linux/udp.h
blob: 6fe4721bfd6778953b4d0db294064a3782a83180 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __LINUX_UDP_WRAPPER_H
#define __LINUX_UDP_WRAPPER_H 1

#include_next <linux/udp.h>

#ifndef HAVE_SKBUFF_HEADER_HELPERS
static inline struct udphdr *udp_hdr(const struct sk_buff *skb)
{
	return (struct udphdr *)skb_transport_header(skb);
}
#endif /* HAVE_SKBUFF_HEADER_HELPERS */

#endif