fix the issue #463

This commit is contained in:
slguan 2019-09-05 12:33:27 +08:00
parent fae0948de6
commit 63e741a3c6
1 changed files with 1 additions and 5 deletions

View File

@ -351,13 +351,11 @@ bool httpReadData(HttpThread *pThread, HttpContext *pContext) {
} }
if (!httpReadDataImp(pContext)) { if (!httpReadDataImp(pContext)) {
httpTrace("context:%p, fd:%d, ip:%s, read data error, close connect", pContext, pContext->fd, pContext->ipstr);
httpCloseContextByServer(pThread, pContext); httpCloseContextByServer(pThread, pContext);
return false; return false;
} }
if (!httpParseRequest(pContext)) { if (!httpParseRequest(pContext)) {
httpTrace("context:%p, fd:%d, ip:%s, failed to parse http head, close connect", pContext, pContext->fd, pContext->ipstr);
httpCloseContextByServer(pThread, pContext); httpCloseContextByServer(pThread, pContext);
return false; return false;
} }
@ -450,8 +448,8 @@ void httpProcessHttpData(void *param) {
} }
if (!pContext->pThread->pServer->online) { if (!pContext->pThread->pServer->online) {
httpSendErrorResp(pContext, HTTP_SERVER_OFFLINE);
httpTrace("context:%p, fd:%d, ip:%s, server is not online", pContext, pContext->fd, pContext->ipstr); httpTrace("context:%p, fd:%d, ip:%s, server is not online", pContext, pContext->fd, pContext->ipstr);
httpSendErrorResp(pContext, HTTP_SERVER_OFFLINE);
httpCloseContextByServer(pThread, pContext); httpCloseContextByServer(pThread, pContext);
continue; continue;
} }
@ -459,8 +457,6 @@ void httpProcessHttpData(void *param) {
__sync_fetch_and_add(&pThread->pServer->requestNum, 1); __sync_fetch_and_add(&pThread->pServer->requestNum, 1);
if (!(*(pThread->processData))(pContext)) { if (!(*(pThread->processData))(pContext)) {
httpError("context:%p, fd:%d, ip:%s, app force closed", pContext, pContext->fd, pContext->ipstr,
pContext->accessTimes);
httpCloseContextByServer(pThread, pContext); httpCloseContextByServer(pThread, pContext);
} }
} }