June 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
26 | 27 | 28 | 29 | 30 | 31 | 1 |
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 1 | 2 | 3 | 4 | 5 | 6 |
01: #ifndef _NF_CONNTRACK_FTP_H 02: #define _NF_CONNTRACK_FTP_H 03: /* FTP tracking. */ 04: 05: /* This enum is exposed to userspace */ 06: enum nf_ct_ftp_type { 07: /* PORT command from client */ 08: NF_CT_FTP_PORT, 09: /* PASV response from server */ 10: NF_CT_FTP_PASV, 11: /* EPRT command from client */ 12: NF_CT_FTP_EPRT, 13: /* EPSV response from server */ 14: NF_CT_FTP_EPSV, 15: }; 16: 17: 18: #endif /* _NF_CONNTRACK_FTP_H */ 19: