]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - ssh.h
Fix error handling in sftp (the sftp_recv return value was being
[PuTTY.git] / ssh.h
diff --git a/ssh.h b/ssh.h
index a12aed30a0c4d03befab8dec015b918ba283a311..c05c78c8f013ab436b01254f1dd3722aa37ba97f 100644 (file)
--- a/ssh.h
+++ b/ssh.h
@@ -200,6 +200,7 @@ extern const struct ssh_cipher ssh_3des;
 extern const struct ssh_cipher ssh_des;
 extern const struct ssh_cipher ssh_blowfish_ssh1;
 extern const struct ssh2_ciphers ssh2_3des;
+extern const struct ssh2_ciphers ssh2_des;
 extern const struct ssh2_ciphers ssh2_aes;
 extern const struct ssh2_ciphers ssh2_blowfish;
 extern const struct ssh_kex ssh_diffiehellman;
@@ -354,3 +355,9 @@ int zlib_decompress_block(unsigned char *block, int len,
 #define SSH2_AGENTC_ADD_IDENTITY                17
 #define SSH2_AGENTC_REMOVE_IDENTITY             18
 #define SSH2_AGENTC_REMOVE_ALL_IDENTITIES       19
+
+/*
+ * Need this to warn about support for the original SSH2 keyfile
+ * format.
+ */
+void old_keyfile_warning(void);