Add encryption selection, and Blowfish as second option
[u/mdw/putty] / putty.h
diff --git a/putty.h b/putty.h
index 52a5061..85c856c 100644 (file)
--- a/putty.h
+++ b/putty.h
@@ -97,6 +97,7 @@ typedef struct {
     int close_on_exit;
     /* SSH options */
     int nopty;
+    enum { CIPHER_3DES, CIPHER_BLOWFISH } cipher;
     /* Telnet options */
     char termtype[32];
     char termspeed[32];
@@ -227,6 +228,11 @@ void *saferealloc(void *, size_t);
 void safefree(void *);
 
 /*
+ * Exports from version.c.
+ */
+extern char ver[];
+
+/*
  * A debug system.
  */
 #ifdef DEBUG