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