X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=putty.h;h=fed589bbd9e25f99b3c612cf5fa9cf66cbf925ef;hb=20f433efac8908e7024b3ae78fd8f6d3313f4d09;hp=723f1e6be712071f8c841c826afb731c70bd4d77;hpb=6bcac21e36c648736f06a86d97eebd41a9a0c271;p=PuTTY.git diff --git a/putty.h b/putty.h index 723f1e6b..fed589bb 100644 --- a/putty.h +++ b/putty.h @@ -269,7 +269,8 @@ enum { struct backend_tag { const char *(*init) (void *frontend_handle, void **backend_handle, Config *cfg, - char *host, int port, char **realhost, int nodelay); + char *host, int port, char **realhost, int nodelay, + int keepalive); void (*free) (void *handle); /* back->reconfig() passes in a replacement configuration. */ void (*reconfig) (void *handle, Config *cfg); @@ -329,6 +330,7 @@ struct config_tag { int warn_on_close; int ping_interval; /* in seconds */ int tcp_nodelay; + int tcp_keepalives; /* Proxy options */ char proxy_exclude_list[512]; int proxy_dns;