The unified diff between revisions [fb7080ca..] and [833d0ade..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'ssh.h'
# # # patch "ssh.h" # from [190af1a6af0c6977129303befae06af9c58e6e07] # to [fd440d4984a4d8471195ca110f454808591a8c85] # ============================================================ --- ssh.h 190af1a6af0c6977129303befae06af9c58e6e07 +++ ssh.h fd440d4984a4d8471195ca110f454808591a8c85 @@ -105,3 +105,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