Browse Source

enlarge the default timeout

pull/347/head
Max Lv 9 years ago
parent
commit
8283e51597
3 changed files with 4 additions and 6 deletions
  1. 2
      src/local.c
  2. 2
      src/redir.c
  3. 6
      src/tunnel.c

2
src/local.c

@ -1023,7 +1023,7 @@ int main(int argc, char **argv)
} }
if (timeout == NULL) { if (timeout == NULL) {
timeout = "10";
timeout = "60";
} }
if (local_addr == NULL) { if (local_addr == NULL) {

2
src/redir.c

@ -708,7 +708,7 @@ int main(int argc, char **argv)
} }
if (timeout == NULL) { if (timeout == NULL) {
timeout = "10";
timeout = "60";
} }
if (local_addr == NULL) { if (local_addr == NULL) {

6
src/tunnel.c

@ -481,9 +481,7 @@ static struct remote * new_remote(int fd, int timeout)
ev_io_init(&remote->recv_ctx->io, remote_recv_cb, fd, EV_READ); ev_io_init(&remote->recv_ctx->io, remote_recv_cb, fd, EV_READ);
ev_io_init(&remote->send_ctx->io, remote_send_cb, fd, EV_WRITE); ev_io_init(&remote->send_ctx->io, remote_send_cb, fd, EV_WRITE);
ev_timer_init(&remote->send_ctx->watcher, remote_timeout_cb, ev_timer_init(&remote->send_ctx->watcher, remote_timeout_cb,
min(MAX_CONNECT_TIMEOUT,
timeout),
0);
min(MAX_CONNECT_TIMEOUT, timeout), 0);
remote->recv_ctx->remote = remote; remote->recv_ctx->remote = remote;
remote->recv_ctx->connected = 0; remote->recv_ctx->connected = 0;
remote->send_ctx->remote = remote; remote->send_ctx->remote = remote;
@ -754,7 +752,7 @@ int main(int argc, char **argv)
} }
if (timeout == NULL) { if (timeout == NULL) {
timeout = "10";
timeout = "60";
} }
if (local_addr == NULL) { if (local_addr == NULL) {

Loading…
Cancel
Save