comparison options.h @ 437:7319d229799a

0.49 probably done
author Matt Johnston <matt@ucc.asn.au>
date Thu, 22 Feb 2007 15:46:57 +0000
parents 337c45621e81
children fdf06a5a54e4
comparison
equal deleted inserted replaced
436:7282370416a0 437:7319d229799a
131 * It's useful for systems like OS X where standard password crypts don't work, 131 * It's useful for systems like OS X where standard password crypts don't work,
132 * but there's an interface via a PAM module - don't bother using it otherwise. 132 * but there's an interface via a PAM module - don't bother using it otherwise.
133 * You can't enable both PASSWORD and PAM. */ 133 * You can't enable both PASSWORD and PAM. */
134 134
135 #define ENABLE_SVR_PASSWORD_AUTH 135 #define ENABLE_SVR_PASSWORD_AUTH
136 /*#define ENABLE_SVR_PAM_AUTH */ 136 /*#define ENABLE_SVR_PAM_AUTH */ /* requires ./configure --enable-pam */
137 #define ENABLE_SVR_PUBKEY_AUTH 137 #define ENABLE_SVR_PUBKEY_AUTH
138 138
139 #define ENABLE_CLI_PASSWORD_AUTH 139 #define ENABLE_CLI_PASSWORD_AUTH
140 #define ENABLE_CLI_PUBKEY_AUTH 140 #define ENABLE_CLI_PUBKEY_AUTH
141 #define ENABLE_CLI_INTERACT_AUTH 141 #define ENABLE_CLI_INTERACT_AUTH
180 /* Maximum number of failed authentication tries (server option) */ 180 /* Maximum number of failed authentication tries (server option) */
181 #ifndef MAX_AUTH_TRIES 181 #ifndef MAX_AUTH_TRIES
182 #define MAX_AUTH_TRIES 10 182 #define MAX_AUTH_TRIES 10
183 #endif 183 #endif
184 184
185 /* The file to store the daemon's process ID, for shutdown scripts etc */ 185 /* The default file to store the daemon's process ID, for shutdown
186 scripts etc. This can be overridden with the -P flag */
186 #ifndef DROPBEAR_PIDFILE 187 #ifndef DROPBEAR_PIDFILE
187 #define DROPBEAR_PIDFILE "/var/run/dropbear.pid" 188 #define DROPBEAR_PIDFILE "/var/run/dropbear.pid"
188 #endif 189 #endif
189 190
190 /* The command to invoke for xauth when using X11 forwarding. 191 /* The command to invoke for xauth when using X11 forwarding.
212 /******************************************************************* 213 /*******************************************************************
213 * You shouldn't edit below here unless you know you need to. 214 * You shouldn't edit below here unless you know you need to.
214 *******************************************************************/ 215 *******************************************************************/
215 216
216 #ifndef DROPBEAR_VERSION 217 #ifndef DROPBEAR_VERSION
217 #define DROPBEAR_VERSION "0.49test1" 218 #define DROPBEAR_VERSION "0.49"
218 #endif 219 #endif
219 220
220 #define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION 221 #define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION
221 #define PROGNAME "dropbear" 222 #define PROGNAME "dropbear"
222 223