e4d5b79c66
This patch converts all users to use the new crypto_comp type and the crypto_has_* functions. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
15 lines
212 B
C
15 lines
212 B
C
#ifndef _NET_IPCOMP_H
|
|
#define _NET_IPCOMP_H
|
|
|
|
#include <linux/crypto.h>
|
|
#include <linux/types.h>
|
|
|
|
#define IPCOMP_SCRATCH_SIZE 65400
|
|
|
|
struct ipcomp_data {
|
|
u16 threshold;
|
|
struct crypto_comp **tfms;
|
|
};
|
|
|
|
#endif
|