2005-04-16 16:20:36 -06:00
|
|
|
#ifndef _NET_ESP_H
|
|
|
|
#define _NET_ESP_H
|
|
|
|
|
2008-01-28 20:35:05 -07:00
|
|
|
#include <linux/skbuff.h>
|
2005-04-16 16:20:36 -06:00
|
|
|
|
2007-10-10 16:45:25 -06:00
|
|
|
struct ip_esp_hdr;
|
|
|
|
|
|
|
|
static inline struct ip_esp_hdr *ip_esp_hdr(const struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
return (struct ip_esp_hdr *)skb_transport_header(skb);
|
|
|
|
}
|
|
|
|
|
2005-04-16 16:20:36 -06:00
|
|
|
#endif
|