summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/kex.h
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2001-04-04 14:34:59 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2001-04-04 14:34:59 +0000
commit9fced11d5fcbd1680f8326a93d5c6f460bbd1464 (patch)
tree91dbc0338fb11f1b533e674cafc6860f0ccf680d /usr.bin/ssh/kex.h
parentde569bb61c315d070bf9205f4410f70399f67ed0 (diff)
enable server side rekeying + some rekey related clientup.
todo: we should not send any non-KEX messages after we send KEXINIT
Diffstat (limited to 'usr.bin/ssh/kex.h')
-rw-r--r--usr.bin/ssh/kex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/kex.h b/usr.bin/ssh/kex.h
index c37d3aa5fdb..54134221ff0 100644
--- a/usr.bin/ssh/kex.h
+++ b/usr.bin/ssh/kex.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: kex.h,v 1.20 2001/04/04 09:48:34 markus Exp $ */
+/* $OpenBSD: kex.h,v 1.21 2001/04/04 14:34:58 markus Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -115,7 +115,7 @@ Kex *kex_setup(char *proposal[PROPOSAL_MAX]);
void kex_finish(Kex *kex);
void kex_send_kexinit(Kex *kex);
-void kex_protocol_error(int type, int plen, void *ctxt);
+void kex_input_kexinit(int type, int plen, void *ctxt);
void kex_derive_keys(Kex *k, u_char *hash, BIGNUM *shared_secret);
void kexdh(Kex *);