summaryrefslogtreecommitdiffstats
path: root/libssh/auth.c
diff options
context:
space:
mode:
Diffstat (limited to 'libssh/auth.c')
-rw-r--r--libssh/auth.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/libssh/auth.c b/libssh/auth.c
index 3b64e0f..d7fd3fa 100644
--- a/libssh/auth.c
+++ b/libssh/auth.c
@@ -1018,6 +1018,15 @@ int ssh_userauth_autopubkey(ssh_session session, const char *passphrase) {
return SSH_AUTH_DENIED;
}
+struct ssh_kbdint_struct {
+ uint32_t nprompts;
+ char *name;
+ char *instruction;
+ char **prompts;
+ unsigned char *echo; /* bool array */
+ char **answers;
+};
+
static ssh_kbdint kbdint_new(void) {
ssh_kbdint kbd;