X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/a7419ea4b837b23a36ea0eb71b0c24a31a49d3fc..2184a5d91ffbcf2de2f730c83dda2d9443035f50:/putty.h diff --git a/putty.h b/putty.h index d8be7e51..352a4ef3 100644 --- a/putty.h +++ b/putty.h @@ -173,7 +173,7 @@ enum { CIPHER_3DES, CIPHER_BLOWFISH, CIPHER_AES, /* (SSH 2 only) */ - CIPHER_DES, /* (SSH 1 only) */ + CIPHER_DES, CIPHER_MAX /* no. ciphers (inc warn) */ }; @@ -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; @@ -406,6 +408,16 @@ void begin_session(void); void sys_cursor(int x, int y); #define OPTIMISE_IS_SCROLL 1 +void set_iconic(int iconic); +void move_window(int x, int y); +void set_zorder(int top); +void refresh_window(void); +void set_zoomed(int zoomed); +int is_iconic(void); +void get_window_pos(int *x, int *y); +void get_window_pixels(int *x, int *y); +char *get_window_title(int icon); + /* * Exports from noise.c. */