comparison common-algo.c @ 996:47643024fc90

Disable non-delayed zlib for server
author Matt Johnston <matt@ucc.asn.au>
date Wed, 28 Jan 2015 21:38:27 +0800
parents 5c5ade336926
children ffd2359564b0 a37f8730eb0f
comparison
equal deleted inserted replaced
995:6fb4c010c448 996:47643024fc90
203 {"[email protected]", DROPBEAR_COMP_ZLIB_DELAY, NULL, 1, NULL}, 203 {"[email protected]", DROPBEAR_COMP_ZLIB_DELAY, NULL, 1, NULL},
204 {"zlib", DROPBEAR_COMP_ZLIB, NULL, 1, NULL}, 204 {"zlib", DROPBEAR_COMP_ZLIB, NULL, 1, NULL},
205 {"none", DROPBEAR_COMP_NONE, NULL, 1, NULL}, 205 {"none", DROPBEAR_COMP_NONE, NULL, 1, NULL},
206 {NULL, 0, NULL, 0, NULL} 206 {NULL, 0, NULL, 0, NULL}
207 }; 207 };
208
209 algo_type ssh_delaycompress[] = {
210 {"[email protected]", DROPBEAR_COMP_ZLIB_DELAY, NULL, 1, NULL},
211 {"none", DROPBEAR_COMP_NONE, NULL, 1, NULL},
212 {NULL, 0, NULL, 0, NULL}
213 };
208 #endif 214 #endif
209 215
210 algo_type ssh_nocompress[] = { 216 algo_type ssh_nocompress[] = {
211 {"none", DROPBEAR_COMP_NONE, NULL, 1, NULL}, 217 {"none", DROPBEAR_COMP_NONE, NULL, 1, NULL},
212 {NULL, 0, NULL, 0, NULL} 218 {NULL, 0, NULL, 0, NULL}