summaryrefslogtreecommitdiff
path: root/ssh.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2005-07-18 14:32:52 +0000
committerMatt Johnston <matt@ucc.asn.au>2005-07-18 14:32:52 +0000
commitbfbe624301cb1dc0eef9dc00c235edb339e98082 (patch)
tree7539060f852ea180fe550525412f7345a464adba /ssh.h
parent03f634b8a8c00e58528fab21718df514a60d8829 (diff)
downloaddropbear-bfbe624301cb1dc0eef9dc00c235edb339e98082.tar.gz
- progress towards client agent forwarding
(incomplete and does not compile)
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 e976c57..f1df273 100644
--- a/ssh.h
+++ b/ssh.h
@@ -94,3 +94,14 @@
#define SSH_SIGNKEY_DSS_LEN 7
#define SSH_SIGNKEY_RSA "ssh-rsa"
#define SSH_SIGNKEY_RSA_LEN 7
+
+/* Agent commands. These aren't part of the spec, and are defined
+ * only on the openssh implementation. */
+#define SSH_AGENT_FAILURE 5
+#define SSH_AGENT_SUCCESS 6
+#define SSH2_AGENTC_REQUEST_IDENTITIES 11
+#define SSH2_AGENT_IDENTITIES_ANSWER 12
+#define SSH2_AGENTC_SIGN_REQUEST 13
+#define SSH2_AGENT_SIGN_RESPONSE 14
+
+#define SSH2_AGENT_FAILURE 30