https://github.com/torvalds/linux
Raw File
Tip revision: 0215ffb08ce99e2bb59eca114a99499a4d06e704 authored by Linus Torvalds on 29 November 2006, 21:57:37 UTC
Linux 2.6.19
Tip revision: 0215ffb
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