https://github.com/torvalds/linux
Raw File
Tip revision: 95064a75ebf8744e1ff595e8cd7ff9b6c851523e authored by Linus Torvalds on 13 September 2006, 01:41:36 UTC
Linux v2.6.18-rc7
Tip revision: 95064a7
ipcomp.h
#ifndef _NET_IPCOMP_H
#define _NET_IPCOMP_H

#define IPCOMP_SCRATCH_SIZE     65400

struct ipcomp_data {
	u16 threshold;
	struct crypto_tfm **tfms;
};

#endif
back to top