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

📄 ip_conntrack_h323.h

📁 for mips adm5120 uclibc-0.9.19 toolchain
💻 H
字号:
#ifndef _IP_CONNTRACK_H323_H#define _IP_CONNTRACK_H323_H/* H.323 connection tracking. */#ifdef __KERNEL__/* Protects H.323 related data */#include <linux/netfilter_ipv4/lockhelp.h>DECLARE_LOCK_EXTERN(ip_h323_lock);#endif/* Default H.225 port */#define H225_PORT	1720/* This structure is per expected connection */struct ip_ct_h225_expect {	u_int16_t port;			/* Port of the H.225 helper/RTCP/RTP channel */	enum ip_conntrack_dir dir;	/* Direction of the original connection */	unsigned int offset;		/* offset of the address in the payload */};/* This structure exists only once per master */struct ip_ct_h225_master {	int is_h225;				/* H.225 or H.245 connection */#ifdef CONFIG_IP_NF_NAT_NEEDED	enum ip_conntrack_dir dir;		/* Direction of the original connection */	u_int32_t seq[IP_CT_DIR_MAX];		/* Exceptional packet mangling for signal addressess... */	unsigned int offset[IP_CT_DIR_MAX];	/* ...and the offset of the addresses in the payload */#endif};#endif /* _IP_CONNTRACK_H323_H */

⌨️ 快捷键说明

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