Files
linux-apfs/include/net/esp.h
T

14 lines
225 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
#ifndef _NET_ESP_H
#define _NET_ESP_H
2008-01-28 19:35:05 -08:00
#include <linux/skbuff.h>
2005-04-16 15:20:36 -07: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 15:20:36 -07:00
#endif