]> Git Repo - linux.git/blame_incremental - include/net/ipcomp.h
Driver core: fix coding style issues in device.h
[linux.git] / include / net / ipcomp.h
... / ...
CommitLineData
1#ifndef _NET_IPCOMP_H
2#define _NET_IPCOMP_H
3
4#include <linux/types.h>
5
6#define IPCOMP_SCRATCH_SIZE 65400
7
8struct crypto_comp;
9
10struct ipcomp_data {
11 u16 threshold;
12 struct crypto_comp **tfms;
13};
14
15struct ip_comp_hdr;
16struct sk_buff;
17
18static inline struct ip_comp_hdr *ip_comp_hdr(const struct sk_buff *skb)
19{
20 return (struct ip_comp_hdr *)skb_transport_header(skb);
21}
22
23#endif
This page took 0.028801 seconds and 4 git commands to generate.