]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/net/ipcomp.h
Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik...
[mirror_ubuntu-bionic-kernel.git] / include / net / ipcomp.h
CommitLineData
1da177e4
LT
1#ifndef _NET_IPCOMP_H
2#define _NET_IPCOMP_H
3
e4d5b79c 4#include <linux/crypto.h>
9409f38a
HX
5#include <linux/types.h>
6
1da177e4
LT
7#define IPCOMP_SCRATCH_SIZE 65400
8
9struct ipcomp_data {
10 u16 threshold;
e4d5b79c 11 struct crypto_comp **tfms;
1da177e4
LT
12};
13
14#endif