swh:1:snp:c3bf2749e3476071fa748f67b0ffa2fdc5fe49d9
Raw File
Tip revision: b07d68b5ca4d55a16fab223d63d5fb36f89ff42f authored by Linus Torvalds on 28 August 2007, 01:32:35 UTC
Linux 2.6.23-rc4
Tip revision: b07d68b
ipcomp.h
#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
back to top