blob: b94e3047b4d9b39f2ba5782675a2037815545883 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _NET_IPCOMP_H
2#define _NET_IPCOMP_H
3
Herbert Xu9409f382006-08-06 19:49:12 +10004#include <linux/types.h>
5
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#define IPCOMP_SCRATCH_SIZE 65400
7
Herbert Xu9409f382006-08-06 19:49:12 +10008struct crypto_tfm;
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010struct ipcomp_data {
11 u16 threshold;
12 struct crypto_tfm **tfms;
13};
14
15#endif