From da80478d9467192dd8e22ef8b57bae381ce0d39e Mon Sep 17 00:00:00 2001 From: Luigi Rizzo <rizzo@icir.org> Date: Tue, 28 Nov 2006 00:02:42 +0000 Subject: [PATCH] In the previous commit i forgot to set the poll_timeout to -1, causing the http threads to do busy waiting around the socket... Fix the mistake, sorry for the inconvenience! git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48074 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/http.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main/http.c b/main/http.c index 1d48033e0e..863c9fd18a 100644 --- a/main/http.c +++ b/main/http.c @@ -166,6 +166,7 @@ static struct server_args http_desc = { .accept_fd = -1, .master = AST_PTHREADT_NULL, .is_ssl = 0, + .poll_timeout = -1, .name = "http server", .accept_fn = server_root, .worker_fn = httpd_helper_thread, @@ -175,6 +176,7 @@ static struct server_args https_desc = { .accept_fd = -1, .master = AST_PTHREADT_NULL, .is_ssl = 1, + .poll_timeout = -1, .name = "https server", .accept_fn = server_root, .worker_fn = httpd_helper_thread, -- GitLab