comparison options.h @ 883:ff597bf2cfb0

DROPBEAR_CLI_AUTH_IMMEDIATE fixed, now enabled by default
author Matt Johnston <matt@ucc.asn.au>
date Fri, 17 Jan 2014 21:39:27 +0800
parents c19acba28590
children 49ed526daedc
comparison
equal deleted inserted replaced
882:f05107560aa9 883:ff597bf2cfb0
220 * specified in the SSH_ASKPASS environment variable, and dbclient 220 * specified in the SSH_ASKPASS environment variable, and dbclient
221 * should be run with DISPLAY set and no tty. The program should 221 * should be run with DISPLAY set and no tty. The program should
222 * return the password on standard output */ 222 * return the password on standard output */
223 /*#define ENABLE_CLI_ASKPASS_HELPER*/ 223 /*#define ENABLE_CLI_ASKPASS_HELPER*/
224 224
225 /* Send a real auth request first rather than requesting a list of available methods.
226 * It saves a network round trip at login but prevents immediate login to
227 * accounts with no password, and might be rejected by some strict servers (none
228 * encountered yet) - hence it isn't enabled by default. */
229 /* #define CLI_IMMEDIATE_AUTH */
230
231
232 /* Source for randomness. This must be able to provide hundreds of bytes per SSH 225 /* Source for randomness. This must be able to provide hundreds of bytes per SSH
233 * connection without blocking. In addition /dev/random is used for seeding 226 * connection without blocking. In addition /dev/random is used for seeding
234 * rsa/dss key generation */ 227 * rsa/dss key generation */
235 #define DROPBEAR_URANDOM_DEV "/dev/urandom" 228 #define DROPBEAR_URANDOM_DEV "/dev/urandom"
236 229