https://github.com/torvalds/linux
Raw File
Tip revision: 5666c0947ede0432ba5148570aa66ffb9febff5b authored by Linus Torvalds on 01 December 2005, 06:25:15 UTC
Linux v2.6.15-rc4
Tip revision: 5666c09
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