X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=putty.h;h=352a4ef3f58ce86f10bc1ed302d8ae721fa641d1;hb=f391d066de67fc172592d8dfd27902747fa3c833;hp=53a6c54a87238fabef6d918f5d2cbb594f94a880;hpb=bb1f5cec3188fd1e0329425212c149959151450e;p=PuTTY.git diff --git a/putty.h b/putty.h index 53a6c54a..352a4ef3 100644 --- a/putty.h +++ b/putty.h @@ -202,7 +202,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 +236,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 @@ -252,6 +253,7 @@ typedef struct { int sshprot; /* use v1 or v2 when both available */ int buggymac; /* MAC bug commmercial <=v2.3.x SSH2 */ int try_tis_auth; + int try_ki_auth; int ssh_subsys; /* run a subsystem rather than a command */ int ssh_subsys2; /* fallback to go with remote_cmd2 */ /* Telnet options */ @@ -304,7 +306,7 @@ typedef struct { char bell_wavefile[FILENAME_MAX]; int scrollbar; int scrollbar_in_fullscreen; - enum { RESIZE_TERM, RESIZE_DISABLED, RESIZE_FONT } resize_action; + enum { RESIZE_TERM, RESIZE_DISABLED, RESIZE_FONT, RESIZE_EITHER } resize_action; int bce; int blinktext; int win_name_always;