Fix Blowfish-with-SSH2 combination, and enable user cipher
[u/mdw/putty] / putty.h
diff --git a/putty.h b/putty.h
index 1505477..4b9c30f 100644 (file)
--- a/putty.h
+++ b/putty.h
@@ -137,6 +137,7 @@ typedef struct {
     /* SSH options */
     char remote_cmd[512];
     int nopty;
+    int agentfwd;
     enum { CIPHER_3DES, CIPHER_BLOWFISH, CIPHER_DES } cipher;
     char keyfile[FILENAME_MAX];
     int sshprot;                       /* use v1 or v2 when both available */
@@ -355,6 +356,12 @@ void crypto_wrapup();
 #endif
 
 /*
+ * Exports from pageantc.c
+ */
+void agent_query(void *in, int inlen, void **out, int *outlen);
+int agent_exists(void);
+
+/*
  * A debug system.
  */
 #ifdef DEBUG