blob: 87c1af3e5e8243be480e0cec57860242c722a914 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _NET_IPCOMP_H
2#define _NET_IPCOMP_H
3
Herbert Xue4d5b792006-08-26 18:12:40 +10004#include <linux/crypto.h>
Herbert Xu9409f382006-08-06 19:49:12 +10005#include <linux/types.h>
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#define IPCOMP_SCRATCH_SIZE 65400
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009struct ipcomp_data {
10 u16 threshold;
Herbert Xue4d5b792006-08-26 18:12:40 +100011 struct crypto_comp **tfms;
Linus Torvalds1da177e2005-04-16 15:20:36 -070012};
13
14#endif