X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/b44b307ac0fc00f2a61ef64d4681fe201ecb927c..941d39e21d83e4db76f354e6782e24b216027965:/putty.h diff --git a/putty.h b/putty.h index 79f0b8d9..9994b859 100644 --- a/putty.h +++ b/putty.h @@ -242,6 +242,15 @@ typedef struct { int warn_on_close; int ping_interval; /* in seconds */ int tcp_nodelay; + /* Proxy options */ + char proxy_exclude_list[512]; + enum { PROXY_NONE, PROXY_HTTP, PROXY_SOCKS, PROXY_TELNET } proxy_type; + char proxy_host[512]; + int proxy_port; + char proxy_username[32]; + char proxy_password[32]; + char proxy_telnet_command[512]; + int proxy_socks_version; /* SSH options */ char remote_cmd[512]; char remote_cmd2[512]; /* fallback if the first fails @@ -525,11 +534,14 @@ extern Backend rlogin_backend; extern Backend telnet_backend; /* - * Exports from ssh.c. + * Exports from ssh.c. (NB the getline variables have to be GLOBAL + * so that PuTTYtel will still compile - otherwise it would depend + * on ssh.c.) */ -extern int (*ssh_get_line) (const char *prompt, char *str, int maxlen, +GLOBAL int (*ssh_get_line) (const char *prompt, char *str, int maxlen, int is_pw); +GLOBAL int ssh_getline_pw_only; extern Backend ssh_backend; /* @@ -607,7 +619,6 @@ int wc_unescape(char *output, const char *wildcard); * windlg.c). */ extern int console_batch_mode; -extern char *console_password; int console_get_line(const char *prompt, char *str, int maxlen, int is_pw); /* @@ -622,4 +633,17 @@ printer_job *printer_start_job(char *printer); void printer_job_data(printer_job *, void *, int); void printer_finish_job(printer_job *); +/* + * Exports from cmdline.c (and also cmdline_error(), which is + * defined differently in various places and required _by_ + * cmdline.c). + */ +int cmdline_process_param(char *, char *, int); +void cmdline_run_saved(void); +extern char *cmdline_password; +#define TOOLTYPE_FILETRANSFER 1 +extern int cmdline_tooltype; + +void cmdline_error(char *, ...); + #endif