From d9fafd9603771bbe92f4a8305ea7554b618c8cb2 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sun, 6 Sep 2015 17:12:31 +0100 Subject: [PATCH] fix the missing initialization of the folish ProcessUnackedSends option --- OpenSim/Region/ClientStack/Linden/UDP/LLUDPClient.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPClient.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPClient.cs index 86a71881e6..8d4117db89 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPClient.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPClient.cs @@ -252,6 +252,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP if (maxRTO != 0) m_maxRTO = maxRTO; + ProcessUnackedSends = true; + m_burstTime = rates.BrustTime; float m_burst = rates.ClientMaxRate * m_burstTime;