From 9edc38d045fe9a278f675c52998fe5b7c390bacc Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Thu, 16 Feb 2012 10:14:18 +0100 Subject: Re-disable threaded connections. --- server/src/httpd.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/httpd.cc b/server/src/httpd.cc index 1c0575a..579743f 100644 --- a/server/src/httpd.cc +++ b/server/src/httpd.cc @@ -181,7 +181,7 @@ Httpd::~Httpd() void Httpd::listen(unsigned short int port, unsigned int cn_limit, unsigned int cn_timeout) { - int flags = MHD_USE_DEBUG | MHD_USE_THREAD_PER_CONNECTION; + int flags = MHD_USE_DEBUG | MHD_USE_SELECT_INTERNALLY;//MHD_USE_THREAD_PER_CONNECTION; d = MHD_start_daemon(flags, port, NULL, NULL, request_handler, this, @@ -201,7 +201,7 @@ void Httpd::listen_ssl(unsigned short int port, std::string key, std::string cert, unsigned int cn_limit, unsigned int cn_timeout) { - int flags = MHD_USE_DEBUG | MHD_USE_THREAD_PER_CONNECTION | MHD_USE_SSL; + int flags = MHD_USE_DEBUG | MHD_USE_SELECT_INTERNALLY | MHD_USE_SSL;//MHD_USE_THREAD_PER_CONNECTION; d_ssl = MHD_start_daemon(flags, port, NULL, NULL, request_handler, this, -- cgit v1.2.3