From 3e7011ca144ce55c7c261cefe238c693df18e1ae Mon Sep 17 00:00:00 2001 From: kervala Date: Wed, 18 May 2016 09:52:48 +0200 Subject: [PATCH] Fixed: Delay when logging in --- code/ryzom/common/src/game_share/http_client.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/code/ryzom/common/src/game_share/http_client.cpp b/code/ryzom/common/src/game_share/http_client.cpp index 3e100c762..b21519014 100644 --- a/code/ryzom/common/src/game_share/http_client.cpp +++ b/code/ryzom/common/src/game_share/http_client.cpp @@ -124,6 +124,7 @@ bool CHttpClient::sendRequest(const std::string& methodWB, const std::string &ur std::string request; request += methodWB + " " + path + " HTTP/1.1\r\n"; request += "Host: " + host + "\r\n"; + request += "Connection: close\r\n"; // Send if (cookieName.empty() && postParams.empty())