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

26 lines
434 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
2008-01-28 19:35:05 -08:00
struct crypto_aead;
2005-04-16 15:20:36 -07:00
2008-01-28 19:35:05 -08:00
struct esp_data {
/* 0..255 */
int padlen;
2005-04-16 15:20:36 -07:00
2008-01-28 19:35:05 -08:00
/* Confidentiality & Integrity */
struct crypto_aead *aead;
2005-04-16 15:20:36 -07:00
};
extern void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len);
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