Browse Source

Merge pull request #299 from dryabov/patch-8

Process "Connection: close" header in non-JSON requests
miguelfreitas
miguelfreitas 10 years ago
parent
commit
6e86ec1fa0
  1. 6
      src/bitcoinrpc.cpp

6
src/bitcoinrpc.cpp

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

Loading…
Cancel
Save