Bump response timer to three seconds, GitHub issue 2984.

This commit is contained in:
nicm 2021-11-29 11:05:28 +00:00
parent add03dfb8d
commit 333cf6429a
1 changed files with 1 additions and 1 deletions

2
tty.c
View File

@ -302,7 +302,7 @@ tty_start_tty(struct tty *tty)
{ {
struct client *c = tty->client; struct client *c = tty->client;
struct termios tio; struct termios tio;
struct timeval tv = { .tv_sec = 1 }; struct timeval tv = { .tv_sec = 3 };
setblocking(c->fd, 0); setblocking(c->fd, 0);
event_add(&tty->event_in, NULL); event_add(&tty->event_in, NULL);