ipcomp.h

来自「linux 内核源代码」· C头文件 代码 · 共 24 行

H
24
字号
#ifndef _NET_IPCOMP_H#define _NET_IPCOMP_H#include <linux/types.h>#define IPCOMP_SCRATCH_SIZE     65400struct crypto_comp;struct ipcomp_data {	u16 threshold;	struct crypto_comp **tfms;};struct ip_comp_hdr;struct sk_buff;static inline struct ip_comp_hdr *ip_comp_hdr(const struct sk_buff *skb){	return (struct ip_comp_hdr *)skb_transport_header(skb);}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?