Home | History | Annotate | Download | only in netfilter
      1 #ifndef _NF_CONNTRACK_FTP_H
      2 #define _NF_CONNTRACK_FTP_H
      3 /* FTP tracking. */
      4 
      5 /* This enum is exposed to userspace */
      6 enum nf_ct_ftp_type
      7 {
      8 	/* PORT command from client */
      9 	NF_CT_FTP_PORT,
     10 	/* PASV response from server */
     11 	NF_CT_FTP_PASV,
     12 	/* EPRT command from client */
     13 	NF_CT_FTP_EPRT,
     14 	/* EPSV response from server */
     15 	NF_CT_FTP_EPSV,
     16 };
     17 
     18 
     19 #endif /* _NF_CONNTRACK_FTP_H */
     20