xref: /openbmc/linux/include/net/ipcomp.h (revision 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2)
1 #ifndef _NET_IPCOMP_H
2 #define _NET_IPCOMP_H
3 
4 #define IPCOMP_SCRATCH_SIZE     65400
5 
6 struct ipcomp_data {
7 	u16 threshold;
8 	struct crypto_tfm **tfms;
9 };
10 
11 #endif
12