X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=putty.h;h=3ccd96cb868beb52d8286d617b3ae1a7ddef1ab8;hb=5471539a6738484b48fb938c88dce547a3e4b299;hp=cfdc81544a4efba4c353a3ce2f24a1ba185e7ee1;hpb=64ec5e03d5362ed036e9de1a765085c571eaa3b7;p=PuTTY.git diff --git a/putty.h b/putty.h index cfdc8154..3ccd96cb 100644 --- a/putty.h +++ b/putty.h @@ -291,7 +291,7 @@ enum { * Proxy types. */ PROXY_NONE, PROXY_SOCKS4, PROXY_SOCKS5, - PROXY_HTTP, PROXY_TELNET, PROXY_CMD + PROXY_HTTP, PROXY_TELNET, PROXY_CMD, PROXY_FUZZ }; enum { @@ -445,6 +445,9 @@ struct backend_tag { */ void (*unthrottle) (void *handle, int); int (*cfg_info) (void *handle); + /* Only implemented in the SSH protocol: check whether a + * connection-sharing upstream exists for a given configuration. */ + int (*test_for_upstream)(const char *host, int port, Conf *conf); const char *name; int protocol; int default_port;