summaryrefslogtreecommitdiff
path: root/kex.h
diff options
context:
space:
mode:
authordjm <djm>2001-12-21 04:00:19 +0000
committerdjm <djm>2001-12-21 04:00:19 +0000
commitb03b6a0b92a41c3a0a069935f9c27c698a04b284 (patch)
tree0eabead2aa077e9ce1a6734a9b90aa9534c1b797 /kex.h
parentad7513f148d12450c83c03afb84dd14571255ed0 (diff)
downloadopenssh-b03b6a0b92a41c3a0a069935f9c27c698a04b284.tar.gz
- djm@cvs.openbsd.org 2001/12/20 22:50:24
[auth2.c auth2-chall.c channels.c channels.h clientloop.c dispatch.c] [dispatch.h kex.c kex.h packet.c packet.h serverloop.c ssh.c] [sshconnect2.c] Conformance fix: we should send failing packet sequence number when responding with a SSH_MSG_UNIMPLEMENTED message. Spotted by yakk@yakk.dot.net; ok markus@
Diffstat (limited to 'kex.h')
-rw-r--r--kex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kex.h b/kex.h
index fe339211..ba650ea0 100644
--- a/kex.h
+++ b/kex.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: kex.h,v 1.26 2001/06/26 17:27:23 markus Exp $ */
+/* $OpenBSD: kex.h,v 1.27 2001/12/20 22:50:24 djm Exp $ */
/*
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
@@ -115,7 +115,7 @@ Kex *kex_setup(char *[PROPOSAL_MAX]);
void kex_finish(Kex *);
void kex_send_kexinit(Kex *);
-void kex_input_kexinit(int, int, void *);
+void kex_input_kexinit(int, int, u_int32_t, void *);
void kex_derive_keys(Kex *, u_char *, BIGNUM *);
void kexdh(Kex *);