1
0
Fork 0
alistair23-linux/include/net/ipcomp.h

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