Disable username switching between SSH2 auth attempts, and add a
[u/mdw/putty] / putty.h
diff --git a/putty.h b/putty.h
index ada0858..4302b84 100644 (file)
--- a/putty.h
+++ b/putty.h
@@ -109,6 +109,9 @@ GLOBAL int session_closed;
 
 GLOBAL int big_cursor;
 
+GLOBAL char *help_path;
+GLOBAL int help_has_contents;
+
 GLOBAL int utf;
 GLOBAL int dbcs_screenfont;
 GLOBAL int font_codepage;
@@ -202,7 +205,7 @@ enum {
 };
 
 typedef struct {
-    char *(*init) (char *host, int port, char **realhost);
+    char *(*init) (char *host, int port, char **realhost, int nodelay);
     /* back->send() returns the current amount of buffered data. */
     int (*send) (char *buf, int len);
     /* back->sendbuffer() does the same thing but without attempting a send */
@@ -236,6 +239,7 @@ typedef struct {
     int close_on_exit;
     int warn_on_close;
     int ping_interval;                /* in seconds */
+    int tcp_nodelay;
     /* SSH options */
     char remote_cmd[512];
     char remote_cmd2[512];            /* fallback if the first fails
@@ -247,10 +251,12 @@ typedef struct {
     int nopty;
     int compression;
     int agentfwd;
+    int change_username;              /* allow username switching in SSH2 */
     int ssh_cipherlist[CIPHER_MAX];
     char keyfile[FILENAME_MAX];
     int sshprot;                      /* use v1 or v2 when both available */
     int buggymac;                     /* MAC bug commmercial <=v2.3.x SSH2 */
+    int ssh2_des_cbc;                 /* "des-cbc" nonstandard SSH2 cipher */
     int try_tis_auth;
     int try_ki_auth;
     int ssh_subsys;                   /* run a subsystem rather than a command */