comparison options.h @ 26:0969767bca0d

snapshot of stuff
author Matt Johnston <matt@ucc.asn.au>
date Mon, 26 Jul 2004 02:44:20 +0000
parents db2c8e6fb284
children f789045062e6
comparison
equal deleted inserted replaced
25:e4b6e2d569b2 26:0969767bca0d
28 /****************************************************************** 28 /******************************************************************
29 * Define compile-time options below - the "#ifndef DROPBEAR_XXX .... #endif" 29 * Define compile-time options below - the "#ifndef DROPBEAR_XXX .... #endif"
30 * parts are to allow for commandline -DDROPBEAR_XXX options etc. 30 * parts are to allow for commandline -DDROPBEAR_XXX options etc.
31 ******************************************************************/ 31 ******************************************************************/
32 #define DROPBEAR_SERVER 32 #define DROPBEAR_SERVER
33 /* #define DROPBEAR_CLIENT */ 33 //#define DROPBEAR_CLIENT
34 34
35 #ifndef DROPBEAR_PORT 35 #ifndef DROPBEAR_PORT
36 #define DROPBEAR_PORT 22 36 #define DROPBEAR_PORT 22
37 #endif 37 #endif
38 38
46 46
47 /* Setting this disables the fast exptmod bignum code. It saves ~5kB, but is 47 /* Setting this disables the fast exptmod bignum code. It saves ~5kB, but is
48 * perhaps 20% slower for pubkey operations (it is probably worth experimenting 48 * perhaps 20% slower for pubkey operations (it is probably worth experimenting
49 * if you want to use this) */ 49 * if you want to use this) */
50 /*#define NO_FAST_EXPTMOD*/ 50 /*#define NO_FAST_EXPTMOD*/
51 #define DROPBEAR_SMALL_CODE
51 52
52 /* Enable X11 Forwarding */ 53 /* Enable X11 Forwarding */
53 #define ENABLE_X11FWD 54 #define ENABLE_X11FWD
54 55
55 /* Enable TCP Fowarding */ 56 /* Enable TCP Fowarding */
179 /******************************************************************* 180 /*******************************************************************
180 * You shouldn't edit below here unless you know you need to. 181 * You shouldn't edit below here unless you know you need to.
181 *******************************************************************/ 182 *******************************************************************/
182 183
183 #ifndef DROPBEAR_VERSION 184 #ifndef DROPBEAR_VERSION
184 #define DROPBEAR_VERSION "0.41" 185 #define DROPBEAR_VERSION "0.41-and-client"
185 #endif 186 #endif
186 187
187 #define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION 188 #define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION
188 #define PROGNAME "dropbear" 189 #define PROGNAME "dropbear"
189 190