Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch
[cascardo/linux.git] / include / net / esp.h
1 #ifndef _NET_ESP_H
2 #define _NET_ESP_H
3
4 #include <linux/skbuff.h>
5
6 void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len);
7
8 struct ip_esp_hdr;
9
10 static inline struct ip_esp_hdr *ip_esp_hdr(const struct sk_buff *skb)
11 {
12         return (struct ip_esp_hdr *)skb_transport_header(skb);
13 }
14
15 #endif