ipcomp.h 205 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef _NET_IPCOMP_H
#define _NET_IPCOMP_H

4 5
#include <linux/types.h>

L
Linus Torvalds 已提交
6 7
#define IPCOMP_SCRATCH_SIZE     65400

8 9
struct crypto_tfm;

L
Linus Torvalds 已提交
10 11 12 13 14 15
struct ipcomp_data {
	u16 threshold;
	struct crypto_tfm **tfms;
};

#endif