ip_conntrack_ftp.h

来自「内核linux2.4.20,可跟rtlinux3.2打补丁 组成实时linux系」· C头文件 代码 · 共 45 行

H
45
字号
#ifndef _IP_CONNTRACK_FTP_H#define _IP_CONNTRACK_FTP_H/* FTP tracking. */#ifndef __KERNEL__#error Only in kernel.#endif#include <linux/netfilter_ipv4/lockhelp.h>/* Protects ftp part of conntracks */DECLARE_LOCK_EXTERN(ip_ftp_lock);enum ip_ct_ftp_type{	/* PORT command from client */	IP_CT_FTP_PORT,	/* PASV response from server */	IP_CT_FTP_PASV,	/* EPRT command from client */	IP_CT_FTP_EPRT,	/* EPSV response from server */	IP_CT_FTP_EPSV,};/* We record seq number and length of ftp ip/port text here: all in   host order. */struct ip_ct_ftp{	/* This tells NAT that this is an ftp connection */	int is_ftp;	u_int32_t seq;	/* 0 means not found yet */	u_int32_t len;	enum ip_ct_ftp_type ftptype;	/* Port that was to be used */	u_int16_t port;	/* Next valid seq position for cmd matching after newline */	u_int32_t seq_aft_nl[IP_CT_DIR_MAX];	/* 0 means seq_match_aft_nl not set */	int seq_aft_nl_set[IP_CT_DIR_MAX];};#endif /* _IP_CONNTRACK_FTP_H */

⌨️ 快捷键说明

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