From cab458b84e2ce44e1e2c319a794430b70f299c7e Mon Sep 17 00:00:00 2001 From: lxsang Date: Sun, 28 Mar 2021 19:24:16 +0200 Subject: [PATCH] increase proxy wait time --- http_server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http_server.c b/http_server.c index 8374650..345aa19 100644 --- a/http_server.c +++ b/http_server.c @@ -820,7 +820,7 @@ static void *proxy_monitor(void *data) } else { - antd_task_bind_event(task, proxy->sock, 10u, TASK_EVT_ON_TIMEOUT); + antd_task_bind_event(task, proxy->sock, 50u, TASK_EVT_ON_TIMEOUT); } task->handle = proxy_monitor; task->access_time = rq->client->last_io;