Mercurial > dropbear
comparison options.h @ 785:ff6e551da826
Don't enable CLI_IMMEDIATE_AUTH by default, it breaks blank password logins
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 18 Apr 2013 21:47:38 +0800 |
parents | f62e82c474d5 |
children | 7dcb46da72d9 |
comparison
equal
deleted
inserted
replaced
784:0e5ea6812bb7 | 785:ff6e551da826 |
---|---|
202 * specified in the SSH_ASKPASS environment variable, and dbclient | 202 * specified in the SSH_ASKPASS environment variable, and dbclient |
203 * should be run with DISPLAY set and no tty. The program should | 203 * should be run with DISPLAY set and no tty. The program should |
204 * return the password on standard output */ | 204 * return the password on standard output */ |
205 /*#define ENABLE_CLI_ASKPASS_HELPER*/ | 205 /*#define ENABLE_CLI_ASKPASS_HELPER*/ |
206 | 206 |
207 /* Send a real auth request first rather than requesting a list of available methods. | |
208 * It saves a network round trip at login but prevents immediate login to | |
209 * accounts with no password, and might be rejected by some strict servers (none | |
210 * encountered yet) - hence it isn't enabled by default. */ | |
211 /* #define CLI_IMMEDIATE_AUTH */ | |
212 | |
213 | |
207 /* Source for randomness. This must be able to provide hundreds of bytes per SSH | 214 /* Source for randomness. This must be able to provide hundreds of bytes per SSH |
208 * connection without blocking. In addition /dev/random is used for seeding | 215 * connection without blocking. In addition /dev/random is used for seeding |
209 * rsa/dss key generation */ | 216 * rsa/dss key generation */ |
210 #define DROPBEAR_URANDOM_DEV "/dev/urandom" | 217 #define DROPBEAR_URANDOM_DEV "/dev/urandom" |
211 | 218 |