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

📄 ip_conntrack.h

📁 这是linux内核C源代码58的源程序
💻 H
字号:
#ifndef _IP_CONNTRACK_H#define _IP_CONNTRACK_H/* Connection state tracking for netfilter.  This is separated from,   but required by, the NAT layer; it can also be used by an iptables   extension. */#include <linux/config.h>#include <linux/netfilter_ipv4/ip_conntrack_tuple.h>enum ip_conntrack_info{	/* Part of an established connection (either direction). */	IP_CT_ESTABLISHED,	/* Like NEW, but related to an existing connection, or ICMP error	   (in either direction). */	IP_CT_RELATED,	/* Started a new connection to track (only           IP_CT_DIR_ORIGINAL); may be a retransmission. */	IP_CT_NEW,	/* >= this indicates reply direction */	IP_CT_IS_REPLY,	/* Number of distinct IP_CT types (no NEW in reply dirn). */	IP_CT_NUMBER = IP_CT_IS_REPLY * 2 - 1};/* Bitset representing status of connection. */enum ip_conntrack_status {	/* It's an expected connection: bit 0 set.  This bit never changed */	IPS_EXPECTED_BIT = 0,	IPS_EXPECTED = (1 << IPS_EXPECTED_BIT),	/* We've seen packets both ways: bit 1 set.  Can be set, not unset. */	IPS_SEEN_REPLY_BIT = 1,	IPS_SEEN_REPLY = (1 << IPS_SEEN_REPLY_BIT),	/* Conntrack should never be early-expired. */	IPS_ASSURED_BIT = 2,	IPS_ASSURED = (1 << IPS_ASSURED_BIT),};#endif /* _IP_CONNTRACK_H */

⌨️ 快捷键说明

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