summaryrefslogtreecommitdiffstats
path: root/kex.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-04-04 17:57:54 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-04-04 17:57:54 +0000
commit8ac9106c3dfbc1f02ddf237067cccd54ffac4e8d (patch)
treef7ec941db419252643adbf7a1b13895c92bca0d9 /kex.h
parent238abf6a14d6ed038918fa35f618089230e68fd6 (diff)
- markus@cvs.openbsd.org 2001/04/04 14:34:58
[clientloop.c kex.c kex.h serverloop.c sshconnect2.c sshd.c] enable server side rekeying + some rekey related clientup. todo: we should not send any non-KEX messages after we send KEXINIT
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 c37d3aa5..54134221 100644
--- a/kex.h
+++ b/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 *);