mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-31 01:35:11 +02:00
- markus@cvs.openbsd.org 2002/07/01 19:48:46
[sshconnect2.c] for compression=yes, we fallback to no-compression if the server does not support compression, vice versa for compression=no. ok mouring@
This commit is contained in:
parent
fd2aacedab
commit
343010ad50
@ -41,6 +41,10 @@
|
|||||||
- deraadt@cvs.openbsd.org 2002/07/01 16:15:25
|
- deraadt@cvs.openbsd.org 2002/07/01 16:15:25
|
||||||
[msg.c]
|
[msg.c]
|
||||||
%u
|
%u
|
||||||
|
- markus@cvs.openbsd.org 2002/07/01 19:48:46
|
||||||
|
[sshconnect2.c]
|
||||||
|
for compression=yes, we fallback to no-compression if the server does
|
||||||
|
not support compression, vice versa for compression=no. ok mouring@
|
||||||
|
|
||||||
20020702
|
20020702
|
||||||
- (djm) Use PAM_MSG_MEMBER for PAM_TEXT_INFO messages, use xmalloc &
|
- (djm) Use PAM_MSG_MEMBER for PAM_TEXT_INFO messages, use xmalloc &
|
||||||
@ -1249,4 +1253,4 @@
|
|||||||
- (stevesk) entropy.c: typo in debug message
|
- (stevesk) entropy.c: typo in debug message
|
||||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2326 2002/07/04 00:15:22 mouring Exp $
|
$Id: ChangeLog,v 1.2327 2002/07/04 00:16:25 mouring Exp $
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: sshconnect2.c,v 1.106 2002/06/30 21:59:45 deraadt Exp $");
|
RCSID("$OpenBSD: sshconnect2.c,v 1.107 2002/07/01 19:48:46 markus Exp $");
|
||||||
|
|
||||||
#include "ssh.h"
|
#include "ssh.h"
|
||||||
#include "ssh2.h"
|
#include "ssh2.h"
|
||||||
@ -95,10 +95,10 @@ ssh_kex2(char *host, struct sockaddr *hostaddr)
|
|||||||
compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
|
compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_STOC]);
|
||||||
if (options.compression) {
|
if (options.compression) {
|
||||||
myproposal[PROPOSAL_COMP_ALGS_CTOS] =
|
myproposal[PROPOSAL_COMP_ALGS_CTOS] =
|
||||||
myproposal[PROPOSAL_COMP_ALGS_STOC] = "zlib";
|
myproposal[PROPOSAL_COMP_ALGS_STOC] = "zlib,none";
|
||||||
} else {
|
} else {
|
||||||
myproposal[PROPOSAL_COMP_ALGS_CTOS] =
|
myproposal[PROPOSAL_COMP_ALGS_CTOS] =
|
||||||
myproposal[PROPOSAL_COMP_ALGS_STOC] = "none";
|
myproposal[PROPOSAL_COMP_ALGS_STOC] = "none,zlib";
|
||||||
}
|
}
|
||||||
if (options.macs != NULL) {
|
if (options.macs != NULL) {
|
||||||
myproposal[PROPOSAL_MAC_ALGS_CTOS] =
|
myproposal[PROPOSAL_MAC_ALGS_CTOS] =
|
||||||
|
Loading…
x
Reference in New Issue
Block a user