Fixed #10 CCServer spontaneously freezes and holds CPU 100%
This commit is contained in:
parent
694c531a0b
commit
2e3cec35c2
2 changed files with 4 additions and 2 deletions
|
@ -44,7 +44,7 @@ bool Httpd::start()
|
||||||
}
|
}
|
||||||
|
|
||||||
m_daemon = MHD_start_daemon(MHD_USE_SELECT_INTERNALLY, static_cast<uint16_t>(m_options->ccPort()), nullptr, nullptr, &Httpd::handler,
|
m_daemon = MHD_start_daemon(MHD_USE_SELECT_INTERNALLY, static_cast<uint16_t>(m_options->ccPort()), nullptr, nullptr, &Httpd::handler,
|
||||||
this, MHD_OPTION_END);
|
this, MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 10, MHD_OPTION_END);
|
||||||
|
|
||||||
if (!m_daemon) {
|
if (!m_daemon) {
|
||||||
LOG_ERR("HTTP Daemon failed to start.");
|
LOG_ERR("HTTP Daemon failed to start.");
|
||||||
|
|
|
@ -82,6 +82,8 @@ unsigned Service::handleGET(const Options* options, const std::string& url, cons
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
LOG_INFO("Resp. lengt: %d", resp.length());
|
||||||
|
|
||||||
uv_mutex_unlock(&m_mutex);
|
uv_mutex_unlock(&m_mutex);
|
||||||
|
|
||||||
return resultCode;
|
return resultCode;
|
||||||
|
@ -134,7 +136,7 @@ unsigned Service::getClientConfig(const Options* options, const std::string& cli
|
||||||
document.Parse(data.str().c_str());
|
document.Parse(data.str().c_str());
|
||||||
|
|
||||||
if (!document.HasParseError()) {
|
if (!document.HasParseError()) {
|
||||||
rapidjson::StringBuffer buffer(0, 65536);
|
rapidjson::StringBuffer buffer(0, 4096);
|
||||||
rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
|
rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
|
||||||
writer.SetMaxDecimalPlaces(10);
|
writer.SetMaxDecimalPlaces(10);
|
||||||
document.Accept(writer);
|
document.Accept(writer);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue