Process "Connection: close" header in non-JSON requests

This commit is contained in:
Denis Ryabov 2014-11-20 14:20:54 +03:00
parent 5379d2a7de
commit 724d32c852

View File

@ -997,6 +997,9 @@ void ServiceConnection(AcceptedConnection *conn)
break;
}
if (mapHeaders["connection"] == "close")
fRun = false;
if(strMethod == "GET" && strURI == "/")
strURI="/home.html";
@ -1037,9 +1040,6 @@ void ServiceConnection(AcceptedConnection *conn)
continue;
}
if (mapHeaders["connection"] == "close")
fRun = false;
if(strMethod == "GET" && strURI.substr(0, 4) == "/rss" && !GetBoolArg("-public_server_mode",false))
{
string rssOutput;