X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/9ca5da428c0113cced4401cc8c424eb6f485608a..b0faa571fcf0bdc556bf5fca5a0f81681d2c1d66:/putty.h diff --git a/putty.h b/putty.h index 791930ab..4f9151b9 100644 --- a/putty.h +++ b/putty.h @@ -92,7 +92,7 @@ GLOBAL char *logfile; typedef enum { TS_AYT, TS_BRK, TS_SYNCH, TS_EC, TS_EL, TS_GA, TS_NOP, TS_ABORT, - TS_AO, TS_IP, TS_SUSP, TS_EOR, TS_EOF, TS_LECHO, TS_RECHO + TS_AO, TS_IP, TS_SUSP, TS_EOR, TS_EOF, TS_LECHO, TS_RECHO, TS_PING } Telnet_Special; typedef enum { @@ -115,6 +115,7 @@ typedef struct { void (*special) (Telnet_Special code); SOCKET (*socket) (void); int (*sendok) (void); + int default_port; } Backend; GLOBAL Backend *back; @@ -138,6 +139,7 @@ typedef struct { enum { PROT_RAW, PROT_TELNET, PROT_SSH } protocol; int close_on_exit; int warn_on_close; + int ping_interval; /* SSH options */ char remote_cmd[512]; int nopty; @@ -192,6 +194,7 @@ typedef struct { VT_Mode vtmode; int xlat_enablekoiwin; int xlat_88592w1250; + int xlat_88592cp852; int xlat_capslockcyr; } Config; @@ -243,7 +246,7 @@ Context get_ctx(void); void free_ctx (Context); void palette_set (int, int, int, int); void palette_reset (void); -void write_clip (void *, int); +void write_clip (void *, int, int); void get_clip (void **, int *); void optimised_move (int, int, int); void connection_fatal(char *, ...); @@ -267,19 +270,25 @@ void random_destroy_seed(void); */ int do_config (void); int do_reconfig (HWND); -void do_defaults (char *); +void do_defaults (char *, Config *); void logevent (char *); void showeventlog (HWND); void showabout (HWND); void verify_ssh_host_key(char *host, int port, char *keytype, char *keystr, char *fingerprint); -void get_sesslist(int allocate); void registry_cleanup(void); GLOBAL int nsessions; GLOBAL char **sessions; /* + * Exports from settings.c. + */ +void save_settings (char *section, int do_host, Config *cfg); +void load_settings (char *section, int do_host, Config *cfg); +void get_sesslist(int allocate); + +/* * Exports from terminal.c. */