diff options
author | Matt Johnston <matt@ucc.asn.au> | 2008-09-29 02:23:04 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2008-09-29 02:23:04 +0000 |
commit | 049fcf1ac572e1a13dc1281c26bbf3512c533fb7 (patch) | |
tree | 62b2290f5f6e4c0c8e0a3c0263eaa991357abb24 /common-algo.c | |
parent | 90f8c1fd51ac6af033d455a775dc5a1455d7d7cb (diff) |
Add support for zlib@openssh.com delayed compression.
Are still advertising 'zlib' for the server, need to allow
delayed-only as an option
--HG--
extra : convert_revision : 319df675cc3c9b35a10b7d8357c94f33fdab1a46
Diffstat (limited to 'common-algo.c')
-rw-r--r-- | common-algo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common-algo.c b/common-algo.c index 21ac96a..d38c5e5 100644 --- a/common-algo.c +++ b/common-algo.c @@ -124,6 +124,7 @@ algo_type sshhashes[] = { algo_type sshcompress[] = { #ifndef DISABLE_ZLIB {"zlib", DROPBEAR_COMP_ZLIB, NULL, 1}, + {"zlib@openssh.com", DROPBEAR_COMP_ZLIB_DELAY, NULL, 1}, #endif {"none", DROPBEAR_COMP_NONE, NULL, 1}, {NULL, 0, NULL, 0} |