diff options
author | djm@openbsd.org <djm@openbsd.org> | 2016-09-28 23:44:52 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2016-09-29 00:18:39 +0200 |
commit | b7689155f3f5c4999846c07a852b1c7a43b09cec (patch) | |
tree | 9fedbd666c59b54e9c68f16d79e1b70e993ba570 /kex.h | |
parent | upstream commit (diff) | |
download | openssh-b7689155f3f5c4999846c07a852b1c7a43b09cec.tar.xz openssh-b7689155f3f5c4999846c07a852b1c7a43b09cec.zip |
upstream commit
put back some pre-auth zlib bits that I shouldn't have
removed - they are still used by the client. Spotted by naddy@
Upstream-ID: 80919468056031037d56a1f5b261c164a6f90dc2
Diffstat (limited to 'kex.h')
-rw-r--r-- | kex.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: kex.h,v 1.80 2016/09/28 20:32:42 djm Exp $ */ +/* $OpenBSD: kex.h,v 1.81 2016/09/28 21:44:52 djm Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -64,7 +64,8 @@ #define KEX_CURVE25519_SHA256_OLD "curve25519-sha256@libssh.org" #define COMP_NONE 0 -#define COMP_DELAYED 1 +#define COMP_ZLIB 1 +#define COMP_DELAYED 2 #define CURVE25519_SIZE 32 |