2005-04-17 06:20:36 +08:00
|
|
|
#ifndef _NET_ESP_H
|
|
|
|
#define _NET_ESP_H
|
|
|
|
|
2008-01-29 11:35:05 +08:00
|
|
|
#include <linux/skbuff.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-10-11 06:45:25 +08: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-17 06:20:36 +08:00
|
|
|
#endif
|