From 5c79e03f18dcb85f777debff60f46e1dff816ccf Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Tue, 27 Dec 2016 12:26:08 +0000 Subject: some cleanup --- OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs') diff --git a/OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs b/OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs index 783c3de..06ecf97 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/GetMeshModule.cs @@ -76,7 +76,6 @@ namespace OpenSim.Region.ClientStack.Linden { public Hashtable response; public int bytes; - public int lod; } @@ -330,9 +329,7 @@ namespace OpenSim.Region.ClientStack.Linden response["str_response_string"] = "Script timeout"; response["content_type"] = "text/plain"; response["keepalive"] = false; - response["reusecontext"] = false; - - responses[requestID] = new aPollResponse() { bytes = 0, response = response, lod = 0 }; + responses[requestID] = new aPollResponse() { bytes = 0, response = response}; return; } @@ -354,7 +351,6 @@ namespace OpenSim.Region.ClientStack.Linden responses[requestID] = new aPollResponse() { bytes = (int)response["int_bytes"], - lod = (int)response["int_lod"], response = response }; @@ -423,7 +419,6 @@ namespace OpenSim.Region.ClientStack.Linden private volatile int lastTimeElapsed = 0; private volatile int BytesSent = 0; private int CapSetThrottle = 0; - private float CapThrottleDistributon = 0.30f; private readonly Scene m_scene; private ThrottleOutPacketType Throttle; private readonly UUID User; -- cgit v1.1