diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-04-04 17:52:53 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-04-04 17:52:53 +0000 |
commit | 238abf6a14d6ed038918fa35f618089230e68fd6 (patch) | |
tree | 7a856c03b822853fc08ef711e6a0bf05c738e6a0 /sshconnect2.c | |
parent | 22b19b43e420c9fc711a38631187820573d0f047 (diff) | |
download | openssh-git-238abf6a14d6ed038918fa35f618089230e68fd6.tar.gz |
- markus@cvs.openbsd.org 2001/04/04 09:48:35
[kex.c kex.h kexdh.c kexgex.c packet.c sshconnect2.c sshd.c]
don't sent multiple kexinit-requests.
send newkeys, block while waiting for newkeys.
fix comments.
Diffstat (limited to 'sshconnect2.c')
-rw-r--r-- | sshconnect2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sshconnect2.c b/sshconnect2.c index 1c52231b..89515670 100644 --- a/sshconnect2.c +++ b/sshconnect2.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshconnect2.c,v 1.63 2001/04/04 00:06:54 markus Exp $"); +RCSID("$OpenBSD: sshconnect2.c,v 1.64 2001/04/04 09:48:35 markus Exp $"); #include <openssl/bn.h> #include <openssl/md5.h> @@ -111,7 +111,7 @@ ssh_kex2(char *host, struct sockaddr *hostaddr) myproposal[PROPOSAL_MAC_ALGS_STOC] = options.macs; } - kex = kex_start(myproposal); + kex = kex_setup(myproposal); kex->client_version_string=client_version_string; kex->server_version_string=server_version_string; kex->check_host_key=&check_host_key_callback; @@ -254,7 +254,7 @@ ssh_userauth2(const char *server_user, char *host) /* initial userauth request */ userauth_none(&authctxt); - //dispatch_init(&input_userauth_error); + /* dispatch_init(&input_userauth_error); */ for (i = 50; i <= 254; i++) { dispatch_set(i, &input_userauth_error); } |