2005-04-16 22:20:36 +00:00
|
|
|
#ifndef _NET_ESP_H
|
|
|
|
#define _NET_ESP_H
|
|
|
|
|
2008-01-29 03:35:05 +00:00
|
|
|
#include <linux/skbuff.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-01-29 03:35:05 +00:00
|
|
|
struct crypto_aead;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-01-29 03:35:05 +00:00
|
|
|
struct esp_data {
|
|
|
|
/* 0..255 */
|
|
|
|
int padlen;
|
|
|
|
|
|
|
|
/* Confidentiality & Integrity */
|
|
|
|
struct crypto_aead *aead;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len);
|
|
|
|
|
2007-10-10 22:45:25 +00: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 22:20:36 +00:00
|
|
|
#endif
|