summaryrefslogtreecommitdiff
path: root/packet.h
diff options
context:
space:
mode:
Diffstat (limited to 'packet.h')
-rw-r--r--packet.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/packet.h b/packet.h
index b82f45a75..2b8069cd6 100644
--- a/packet.h
+++ b/packet.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: packet.h,v 1.79 2017/05/03 21:08:09 naddy Exp $ */ 1/* $OpenBSD: packet.h,v 1.80 2017/05/30 14:18:15 markus Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -77,6 +77,9 @@ struct ssh {
77 TAILQ_HEAD(, key_entry) private_keys; 77 TAILQ_HEAD(, key_entry) private_keys;
78 TAILQ_HEAD(, key_entry) public_keys; 78 TAILQ_HEAD(, key_entry) public_keys;
79 79
80 /* Client/Server authentication context */
81 void *authctxt;
82
80 /* APP data */ 83 /* APP data */
81 void *app_data; 84 void *app_data;
82}; 85};