Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.23-rc1 14 lines 212 B view raw
1#ifndef _NET_IPCOMP_H 2#define _NET_IPCOMP_H 3 4#include <linux/crypto.h> 5#include <linux/types.h> 6 7#define IPCOMP_SCRATCH_SIZE 65400 8 9struct ipcomp_data { 10 u16 threshold; 11 struct crypto_comp **tfms; 12}; 13 14#endif