~ubuntu-branches/ubuntu/trusty/vsftpd/trusty-proposed

« back to all changes in this revision

Viewing changes to tunables.h

  • Committer: Bazaar Package Importer
  • Author(s): Matti Lindell
  • Date: 2008-02-25 09:53:13 UTC
  • mto: (2.2.1 lenny) (1.5.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: james.westby@ubuntu.com-20080225095313-vvzr3dipu25zi1z9
Tags: upstream-2.0.6
ImportĀ upstreamĀ versionĀ 2.0.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
extern int tunable_mdtm_write;                /* Allow MDTM to set timestamps */
68
68
extern int tunable_lock_upload_files;         /* Lock uploading files */
69
69
extern int tunable_pasv_addr_resolve;         /* DNS resolve pasv_addr */
 
70
extern int tunable_debug_ssl;                 /* Verbose SSL logging */
 
71
extern int tunable_require_cert;              /* SSL client cert required */
 
72
extern int tunable_validate_cert;             /* SSL certs must be valid */
70
73
 
71
74
/* Integer/numeric defines */
72
75
extern unsigned int tunable_accept_timeout;
88
91
extern unsigned int tunable_delay_failed_login;
89
92
extern unsigned int tunable_delay_successful_login;
90
93
extern unsigned int tunable_max_login_fails;
 
94
extern unsigned int tunable_chown_upload_mode;
91
95
 
92
96
/* String defines */
93
97
extern const char* tunable_secure_chroot_dir;
120
124
extern const char* tunable_ssl_ciphers;
121
125
extern const char* tunable_rsa_private_key_file;
122
126
extern const char* tunable_dsa_private_key_file;
 
127
extern const char* tunable_ca_certs_file;
123
128
 
124
129
#endif /* VSF_TUNABLES_H */
125
130