Merge pull request #453 from G10h4ck/libresapilocal

ApiLocalConnectionHandler class quit() at the end outside if
This commit is contained in:
Cyril Soler 2016-08-03 19:56:49 +02:00 committed by GitHub
commit 48b2e05e9a

View File

@ -52,19 +52,12 @@ void ApiLocalConnectionHandler::handleRequest()
std::string resultString = mApiServer->handleRequest(req); std::string resultString = mApiServer->handleRequest(req);
mLocalSocket->write(resultString.c_str(), resultString.length()); mLocalSocket->write(resultString.c_str(), resultString.length());
mLocalSocket->write("\n\0"); mLocalSocket->write("\n\0");
}
else mLocalSocket->write("\"{\"data\":null,\"debug_msg\":\"ApiLocalConnectionHandler::handleRequest() Error: timeout waiting for path.\\n\",\"returncode\":\"fail\"}\"\n\0");
}
else mLocalSocket->write("{\"data\":null,\"debug_msg\":\"ApiLocalConnectionHandler::handleRequest() Error: timeout waiting for JSON data.\\n\",\"returncode\":\"fail\"}\"\n\0");
quit(); quit();
}
else
{
mLocalSocket->write("\"{\"data\":null,\"debug_msg\":\"ApiLocalConnectionHandler::handleRequest() Error: timeout waiting for path.\\n\",\"returncode\":\"fail\"}\"\n\0");
quit();
}
}
else
{
mLocalSocket->write("{\"data\":null,\"debug_msg\":\"ApiLocalConnectionHandler::handleRequest() Error: timeout waiting for JSON data.\\n\",\"returncode\":\"fail\"}\"\n\0");
quit();
}
} }
ApiLocalConnectionHandler::~ApiLocalConnectionHandler() ApiLocalConnectionHandler::~ApiLocalConnectionHandler()