turn off KeepAlive

This commit is contained in:
UbitUmarov
2015-08-24 07:38:33 +01:00
parent c3e5519bf3
commit 018d855f28
4 changed files with 13 additions and 13 deletions

View File

@@ -283,7 +283,7 @@ namespace OpenSim.Region.ClientStack.Linden
response["int_response_code"] = 500;
response["str_response_string"] = "Script timeout";
response["content_type"] = "text/plain";
response["keepalive"] = true;
response["keepalive"] = false;
response["reusecontext"] = false;
return response;
@@ -304,7 +304,7 @@ namespace OpenSim.Region.ClientStack.Linden
response["int_response_code"] = 503;
response["str_response_string"] = "Throttled";
response["content_type"] = "text/plain";
response["keepalive"] = true;
response["keepalive"] = false;
response["reusecontext"] = false;
Hashtable headers = new Hashtable();
@@ -325,7 +325,7 @@ namespace OpenSim.Region.ClientStack.Linden
response["int_response_code"] = 500;
response["str_response_string"] = "Script timeout";
response["content_type"] = "text/plain";
response["keepalive"] = true;
response["keepalive"] = false;
response["reusecontext"] = false;
lock (responses)