diff options
author | nicm <nicm> | 2021-11-29 11:05:28 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-11-29 11:05:28 +0000 |
commit | 333cf6429ae16da6fb3892978ea450bc62c3e873 (patch) | |
tree | 23f02ce54d7c6d26a9142ef4c7db6d010c3df9a8 /tty.c | |
parent | add03dfb8dd4f2871b2cbc487ff5af95a63f48f4 (diff) | |
download | rtmux-333cf6429ae16da6fb3892978ea450bc62c3e873.tar.gz rtmux-333cf6429ae16da6fb3892978ea450bc62c3e873.tar.bz2 rtmux-333cf6429ae16da6fb3892978ea450bc62c3e873.zip |
Bump response timer to three seconds, GitHub issue 2984.
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -302,7 +302,7 @@ tty_start_tty(struct tty *tty) { struct client *c = tty->client; struct termios tio; - struct timeval tv = { .tv_sec = 1 }; + struct timeval tv = { .tv_sec = 3 }; setblocking(c->fd, 0); event_add(&tty->event_in, NULL); |