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

@@ -66,7 +66,7 @@ namespace OpenSim.Capabilities.Handlers
Hashtable ret = new Hashtable();
ret["int_response_code"] = (int)System.Net.HttpStatusCode.NotFound;
ret["content_type"] = "text/plain";
ret["keepalive"] = true;
ret["keepalive"] = false;
ret["reusecontext"] = false;
ret["int_bytes"] = 0;
string textureStr = (string)request["texture_id"];
@@ -112,7 +112,7 @@ namespace OpenSim.Capabilities.Handlers
ret["error_status_text"] = "not found";
ret["str_response_string"] = "not found";
ret["content_type"] = "text/plain";
ret["keepalive"] = true;
ret["keepalive"] = false;
ret["reusecontext"] = false;
ret["int_bytes"] = 0;
}