diff options
author | Matt Johnston <matt@ucc.asn.au> | 2005-09-20 17:35:21 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2005-09-20 17:35:21 +0000 |
commit | 876b7081d8f073edd4717ccdb7091fe3a6975ef6 (patch) | |
tree | a1e75c7c67acfa982b9f0098591d9f3e8c86662d /ssh.h | |
parent | cb2cb15916497f790c1d420ccff858446772780c (diff) |
added keyboard-interactive client support
--HG--
extra : convert_revision : 3df738e42f4fc8b7f0f3ff9ca767386f54edb1ea
Diffstat (limited to 'ssh.h')
-rw-r--r-- | ssh.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -42,8 +42,19 @@ #define SSH_MSG_USERAUTH_FAILURE 51 #define SSH_MSG_USERAUTH_SUCCESS 52 #define SSH_MSG_USERAUTH_BANNER 53 + +/* packets 60-79 are method-specific, aren't one-one mapping */ +#define SSH_MSG_USERAUTH_SPECIFIC_60 60 + +#define SSH_MSG_USERAUTH_PASSWD_CHANGEREQ 60 + #define SSH_MSG_USERAUTH_PK_OK 60 +/* keyboard interactive auth */ +#define SSH_MSG_USERAUTH_INFO_REQUEST 60 +#define SSH_MSG_USERAUTH_INFO_RESPONSE 61 + + /* If adding numbers here, check MAX_UNAUTH_PACKET_TYPE in process-packet.c * is still valid */ |