From b799a28923ce4aaa46b9dbde2799a9bb80bb0ed0 Mon Sep 17 00:00:00 2001 From: BenDroid Date: Fri, 2 Mar 2018 20:51:48 +0100 Subject: [PATCH] Fixed merging --- src/cc/Httpd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cc/Httpd.cpp b/src/cc/Httpd.cpp index 7eb23656..561dd5c7 100644 --- a/src/cc/Httpd.cpp +++ b/src/cc/Httpd.cpp @@ -58,7 +58,7 @@ bool Httpd::start() m_daemon = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_SSL, static_cast(m_options->ccPort()), nullptr, nullptr, &Httpd::handler, - this, MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 10, + this, MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 25, MHD_OPTION_HTTPS_MEM_KEY, m_keyPem.c_str(), MHD_OPTION_HTTPS_MEM_CERT, m_certPem.c_str(), MHD_OPTION_END); @@ -66,7 +66,7 @@ bool Httpd::start() # endif m_daemon = MHD_start_daemon(MHD_USE_SELECT_INTERNALLY, static_cast(m_options->ccPort()), nullptr, nullptr, &Httpd::handler, - this, MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 10, MHD_OPTION_END); + this, MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 25, MHD_OPTION_END); # ifndef XMRIG_NO_TLS } # endif