diff options
Diffstat (limited to 'packet.h')
-rw-r--r-- | packet.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 | }; |