From 3552497ae52b78f799be3d34d7a874d610ee6e71 Mon Sep 17 00:00:00 2001 From: Luke Dashjr Date: Tue, 4 Oct 2011 00:42:36 -0400 Subject: [PATCH] Send "Connection: close" HTTP header with JSON-RPC requests (client) --- src/bitcoinrpc.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index cd546abde..1912e76fb 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1826,6 +1826,7 @@ string HTTPPost(const string& strMsg, const map& 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";