2005-04-17 06:20:36 +08:00
|
|
|
#ifndef _NET_IPCOMP_H
|
|
|
|
#define _NET_IPCOMP_H
|
|
|
|
|
2006-08-06 17:49:12 +08:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#define IPCOMP_SCRATCH_SIZE 65400
|
|
|
|
|
2007-10-11 06:45:25 +08:00
|
|
|
struct crypto_comp;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
struct ipcomp_data {
|
|
|
|
u16 threshold;
|
2006-08-26 16:12:40 +08:00
|
|
|
struct crypto_comp **tfms;
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2007-10-11 06:45:25 +08:00
|
|
|
struct ip_comp_hdr;
|
|
|
|
struct sk_buff;
|
|
|
|
|
|
|
|
static inline struct ip_comp_hdr *ip_comp_hdr(const struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
return (struct ip_comp_hdr *)skb_transport_header(skb);
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|