X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=config.c;h=d3d76f57e249d7a0331a58e18c6d058846950cfa;hb=0edefb1809a783e8302ac2faf604e99729c6cda0;hp=de3a6132aa26fa7dd4a9b320da5f0a33f2261e2c;hpb=fb7dd5a255629d00522564dc012e59e98383c609;p=PuTTY.git diff --git a/config.c b/config.c index de3a6132..d3d76f57 100644 --- a/config.c +++ b/config.c @@ -1038,10 +1038,10 @@ void setup_config_box(struct controlbox *b, struct sesslist *sesslist, 'r', HELPCTX(features_charset), dlg_stdcheckbox_handler, I(offsetof(Config,no_remote_charset))); ctrl_checkbox(s, "Disable Arabic text shaping", - 'l', HELPCTX(no_help), dlg_stdcheckbox_handler, + 'l', HELPCTX(features_arabicshaping), dlg_stdcheckbox_handler, I(offsetof(Config, arabicshaping))); ctrl_checkbox(s, "Disable bidirectional text display", - 'j', HELPCTX(no_help), dlg_stdcheckbox_handler, + 'd', HELPCTX(features_bidi), dlg_stdcheckbox_handler, I(offsetof(Config, bidi))); /* @@ -1292,6 +1292,10 @@ void setup_config_box(struct controlbox *b, struct sesslist *sesslist, 'n', HELPCTX(connection_nodelay), dlg_stdcheckbox_handler, I(offsetof(Config,tcp_nodelay))); + ctrl_checkbox(s, "Enable TCP keepalives (SO_KEEPALIVE option)", + 'p', HELPCTX(connection_tcpkeepalive), + dlg_stdcheckbox_handler, + I(offsetof(Config,tcp_keepalives))); } }