⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ip_conntrack_amanda.h

📁 linux下iptable的源代码。对于想学习linux下编程
💻 H
字号:
#ifndef _IP_CONNTRACK_AMANDA_H#define _IP_CONNTRACK_AMANDA_H/* AMANDA tracking. */#ifdef __KERNEL__#include <linux/netfilter_ipv4/lockhelp.h>/* Protects amanda part of conntracks */DECLARE_LOCK_EXTERN(ip_amanda_lock);#endifstruct conn {	char* match;	int matchlen;};#define NUM_MSGS 	3struct ip_ct_amanda_expect{	u_int16_t port;		/* port number of this expectation */	u_int16_t offset;	/* offset of the port specification in ctrl packet */	u_int16_t len;		/* the length of the port number specification */};#endif /* _IP_CONNTRACK_AMANDA_H */

⌨️ 快捷键说明

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