Mercurial > dropbear
comparison options.h @ 70:b0316ce64e4b
Merging in the changes from 0.41-0.43 main Dropbear tree
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 12 Aug 2004 16:41:58 +0000 |
parents | eee77ac31ccc |
children | ac96bc733e71 |
comparison
equal
deleted
inserted
replaced
69:59d16db56e9f | 70:b0316ce64e4b |
---|---|
45 /* Setting this disables the fast exptmod bignum code. It saves ~5kB, but is | 45 /* Setting this disables the fast exptmod bignum code. It saves ~5kB, but is |
46 * perhaps 20% slower for pubkey operations (it is probably worth experimenting | 46 * perhaps 20% slower for pubkey operations (it is probably worth experimenting |
47 * if you want to use this) */ | 47 * if you want to use this) */ |
48 /*#define NO_FAST_EXPTMOD*/ | 48 /*#define NO_FAST_EXPTMOD*/ |
49 | 49 |
50 /* Set this if you want to use the DROPBEAR_SMALL_CODE option. This can save | |
51 several kB in binary size, however will make the symmetrical ciphers (AES, DES | |
52 etc) slower (perhaps by 50%). Recommended for most small systems. */ | |
53 #define DROPBEAR_SMALL_CODE | |
54 | |
50 /* Enable X11 Forwarding - server only */ | 55 /* Enable X11 Forwarding - server only */ |
51 #define ENABLE_X11FWD | 56 #define ENABLE_X11FWD |
52 | 57 |
53 /* Enable TCP Fowarding */ | 58 /* Enable TCP Fowarding */ |
54 /* 'Local' is "-L" style (client listening port forwarded via server) | 59 /* 'Local' is "-L" style (client listening port forwarded via server) |
173 /******************************************************************* | 178 /******************************************************************* |
174 * You shouldn't edit below here unless you know you need to. | 179 * You shouldn't edit below here unless you know you need to. |
175 *******************************************************************/ | 180 *******************************************************************/ |
176 | 181 |
177 #ifndef DROPBEAR_VERSION | 182 #ifndef DROPBEAR_VERSION |
178 #define DROPBEAR_VERSION "0.41-and-client" | 183 #define DROPBEAR_VERSION "0.45-beta1" |
179 #endif | 184 #endif |
180 | 185 |
181 #define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION | 186 #define LOCAL_IDENT "SSH-2.0-dropbear_" DROPBEAR_VERSION |
182 #define PROGNAME "dropbear" | 187 #define PROGNAME "dropbear" |
183 | 188 |