Send "Connection: close" HTTP header with JSON-RPC requests (client)
authorLuke Dashjr <luke-jr+git@utopios.org>
Tue, 4 Oct 2011 04:42:36 +0000 (00:42 -0400)
committerGavin Andresen <gavinandresen@gmail.com>
Wed, 5 Oct 2011 14:15:07 +0000 (10:15 -0400)
src/bitcoinrpc.cpp

index cd546ab..1912e76 100644 (file)
@@ -1826,6 +1826,7 @@ string HTTPPost(const string& strMsg, const map<string,string>& mapRequestHeader
       << "Host: 127.0.0.1\r\n"
       << "Content-Type: application/json\r\n"
       << "Content-Length: " << strMsg.size() << "\r\n"
+      << "Connection: close\r\n"
       << "Accept: application/json\r\n";
     BOOST_FOREACH(const PAIRTYPE(string, string)& item, mapRequestHeaders)
         s << item.first << ": " << item.second << "\r\n";