2005-04-16 22:20:36 +00:00
|
|
|
#ifndef _NET_IPCOMP_H
|
|
|
|
#define _NET_IPCOMP_H
|
|
|
|
|
2006-08-26 08:12:40 +00:00
|
|
|
#include <linux/crypto.h>
|
2006-08-06 09:49:12 +00:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#define IPCOMP_SCRATCH_SIZE 65400
|
|
|
|
|
|
|
|
struct ipcomp_data {
|
|
|
|
u16 threshold;
|
2006-08-26 08:12:40 +00:00
|
|
|
struct crypto_comp **tfms;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|