1 #ifndef _UAPI_NF_CONNTRACK_FTP_H
2 #define _UAPI_NF_CONNTRACK_FTP_H
3 /* FTP tracking. */
4 
5 /* This enum is exposed to userspace */
6 enum nf_ct_ftp_type {
7 	/* PORT command from client */
8 	NF_CT_FTP_PORT,
9 	/* 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 /* _UAPI_NF_CONNTRACK_FTP_H */
19