summaryrefslogtreecommitdiff
path: root/kex.h
diff options
context:
space:
mode:
Diffstat (limited to 'kex.h')
-rw-r--r--kex.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/kex.h b/kex.h
index 1fa13799d..62fa2ea50 100644
--- a/kex.h
+++ b/kex.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: kex.h,v 1.48 2009/10/24 11:13:54 andreas Exp $ */ 1/* $OpenBSD: kex.h,v 1.49 2010/02/26 20:29:54 djm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
@@ -126,7 +126,8 @@ struct Kex {
126 char *client_version_string; 126 char *client_version_string;
127 char *server_version_string; 127 char *server_version_string;
128 int (*verify_host_key)(Key *); 128 int (*verify_host_key)(Key *);
129 Key *(*load_host_key)(int); 129 Key *(*load_host_public_key)(int);
130 Key *(*load_host_private_key)(int);
130 int (*host_key_index)(Key *); 131 int (*host_key_index)(Key *);
131 void (*kex[KEX_MAX])(Kex *); 132 void (*kex[KEX_MAX])(Kex *);
132}; 133};