mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-01 11:32:25 +00:00
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
This commit is contained in:
@@ -166,6 +166,7 @@ static struct server_args http_desc = {
|
|||||||
.accept_fd = -1,
|
.accept_fd = -1,
|
||||||
.master = AST_PTHREADT_NULL,
|
.master = AST_PTHREADT_NULL,
|
||||||
.is_ssl = 0,
|
.is_ssl = 0,
|
||||||
|
.poll_timeout = -1,
|
||||||
.name = "http server",
|
.name = "http server",
|
||||||
.accept_fn = server_root,
|
.accept_fn = server_root,
|
||||||
.worker_fn = httpd_helper_thread,
|
.worker_fn = httpd_helper_thread,
|
||||||
@@ -175,6 +176,7 @@ static struct server_args https_desc = {
|
|||||||
.accept_fd = -1,
|
.accept_fd = -1,
|
||||||
.master = AST_PTHREADT_NULL,
|
.master = AST_PTHREADT_NULL,
|
||||||
.is_ssl = 1,
|
.is_ssl = 1,
|
||||||
|
.poll_timeout = -1,
|
||||||
.name = "https server",
|
.name = "https server",
|
||||||
.accept_fn = server_root,
|
.accept_fn = server_root,
|
||||||
.worker_fn = httpd_helper_thread,
|
.worker_fn = httpd_helper_thread,
|
||||||
|
|||||||
Reference in New Issue
Block a user