comparison sysoptions.h @ 801:7dcb46da72d9 ecc

merge in HEAD
author Matt Johnston <matt@ucc.asn.au>
date Tue, 21 May 2013 12:09:35 +0800
parents 7f604f9b3756 e76614145aea
children 4095b6d7c9fc
comparison
equal deleted inserted replaced
799:c344607b7341 801:7dcb46da72d9
2 * You shouldn't edit this file unless you know you need to. 2 * You shouldn't edit this file unless you know you need to.
3 * This file is only included from options.h 3 * This file is only included from options.h
4 *******************************************************************/ 4 *******************************************************************/
5 5
6 #ifndef DROPBEAR_VERSION 6 #ifndef DROPBEAR_VERSION
7 #define DROPBEAR_VERSION "2013.56" 7 #define DROPBEAR_VERSION "2013.58"
8 #endif 8 #endif
9 9
10 #define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION 10 #define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION
11 #define PROGNAME "dropbear" 11 #define PROGNAME "dropbear"
12 12
20 #endif 20 #endif
21 /* Close connections to clients which haven't authorised after AUTH_TIMEOUT */ 21 /* Close connections to clients which haven't authorised after AUTH_TIMEOUT */
22 #ifndef AUTH_TIMEOUT 22 #ifndef AUTH_TIMEOUT
23 #define AUTH_TIMEOUT 300 /* we choose 5 minutes */ 23 #define AUTH_TIMEOUT 300 /* we choose 5 minutes */
24 #endif 24 #endif
25
26 /* A client should try and send an initial key exchange packet guessing
27 * the algorithm that will match - saves a round trip connecting, has little
28 * overhead if the guess was "wrong". */
29 #define USE_KEX_FIRST_FOLLOWS
30 /* Use protocol extension to allow "first follows" to succeed more frequently.
31 * This is currently Dropbear-specific but will gracefully fallback when connecting
32 * to other implementations. */
33 #define USE_KEXGUESS2
25 34
26 /* Minimum key sizes for DSS and RSA */ 35 /* Minimum key sizes for DSS and RSA */
27 #ifndef MIN_DSS_KEYLEN 36 #ifndef MIN_DSS_KEYLEN
28 #define MIN_DSS_KEYLEN 512 37 #define MIN_DSS_KEYLEN 512
29 #endif 38 #endif