more priv.h splitting

This commit is contained in:
Aris Adamantiadis
2009-09-26 14:05:58 +02:00
parent c3dc60103f
commit cd7f6bea57
12 changed files with 131 additions and 96 deletions

View File

@@ -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;