diff options
author | 2017-05-30 14:18:15 +0000 | |
---|---|---|
committer | 2017-05-30 14:18:15 +0000 | |
commit | bd5af9a54a976077c2ffcd66cfc1bf7469b0321c (patch) | |
tree | 946c4dcaa2a5c6cf3a1733b9cc9574ae99ca8a06 /usr.bin/ssh/packet.h | |
parent | remove unused wrapper functions from key.[ch]; ok djm@ (diff) | |
download | wireguard-openbsd-bd5af9a54a976077c2ffcd66cfc1bf7469b0321c.tar.xz wireguard-openbsd-bd5af9a54a976077c2ffcd66cfc1bf7469b0321c.zip |
sshd: pass struct ssh to auth functions; ok djm@
Diffstat (limited to 'usr.bin/ssh/packet.h')
-rw-r--r-- | usr.bin/ssh/packet.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/packet.h b/usr.bin/ssh/packet.h index d46424c63d0..978b3a3fb5b 100644 --- a/usr.bin/ssh/packet.h +++ b/usr.bin/ssh/packet.h @@ -1,4 +1,4 @@ -/* $OpenBSD: packet.h,v 1.79 2017/05/03 21:08:09 naddy Exp $ */ +/* $OpenBSD: packet.h,v 1.80 2017/05/30 14:18:15 markus Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -63,6 +63,9 @@ struct ssh { TAILQ_HEAD(, key_entry) private_keys; TAILQ_HEAD(, key_entry) public_keys; + /* Client/Server authentication context */ + void *authctxt; + /* APP data */ void *app_data; }; |