summaryrefslogtreecommitdiff
path: root/packet.h
diff options
context:
space:
mode:
authormarkus@openbsd.org <markus@openbsd.org>2017-05-30 14:18:15 +0000
committerDamien Miller <djm@mindrot.org>2017-05-31 10:49:50 +1000
commit5f4082d886c6173b9e90b9768c9a38a3bfd92c2b (patch)
tree76ca3a7c1727cb3203b982cce20b511eee4d9b09 /packet.h
parent7da5df11ac788bc1133d8d598d298e33500524cc (diff)
upstream commit
sshd: pass struct ssh to auth functions; ok djm@ Upstream-ID: b00a80c3460884ebcdd14ef550154c761aebe488
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};