[IPSEC]: Move linux/crypto.h inclusion out of net/xfrm.h
[safe/jmp/linux-2.6] / include / net / ipcomp.h
1 #ifndef _NET_IPCOMP_H
2 #define _NET_IPCOMP_H
3
4 #include <linux/types.h>
5
6 #define IPCOMP_SCRATCH_SIZE     65400
7
8 struct crypto_tfm;
9
10 struct ipcomp_data {
11         u16 threshold;
12         struct crypto_tfm **tfms;
13 };
14
15 #endif