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

📄 ip_nat_ftp.h

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻 H
字号:
#ifndef _IP_NAT_FTP_H#define _IP_NAT_FTP_H/* FTP extension for TCP NAT alteration. */#ifndef __KERNEL__#error Only in kernel.#endif/* Protects ftp part of conntracks */DECLARE_LOCK_EXTERN(ip_ftp_lock);/* We keep track of where the last SYN correction was, and the SYN   offsets before and after that correction.  Two of these (indexed by   direction). */struct ip_nat_ftp_info{	u_int32_t syn_correction_pos;                              	int32_t syn_offset_before, syn_offset_after; };#endif /* _IP_NAT_FTP_H */

⌨️ 快捷键说明

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