summaryrefslogtreecommitdiff
path: root/ssh.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2006-03-21 16:20:59 +0000
committerMatt Johnston <matt@ucc.asn.au>2006-03-21 16:20:59 +0000
commit8025a0b95530e4cb4c4c173497aa235d468ee61d (patch)
tree4d32de11b18d5f6296207961b5f25d0949af80c0 /ssh.h
parentbfbe624301cb1dc0eef9dc00c235edb339e98082 (diff)
parent9ca5291d86458f30a2896ef004c982134fa13a89 (diff)
downloaddropbear-8025a0b95530e4cb4c4c173497aa235d468ee61d.tar.gz
propagate from branch 'au.asn.ucc.matt.dropbear' (head 0501e6f661b5415eb76f3b312d183c3adfbfb712)
to branch 'au.asn.ucc.matt.dropbear.cli-agent' (head 01038174ec27245b51bd43a66c01ad930880f67b)
Diffstat (limited to 'ssh.h')
-rw-r--r--ssh.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/ssh.h b/ssh.h
index f1df273..f40b65a 100644
--- a/ssh.h
+++ b/ssh.h
@@ -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 */