diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs index 2973d4b..7e929e5 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | |||
@@ -407,6 +407,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
407 | { | 407 | { |
408 | //m_log.Debug("[LLUDPSERVER]: Resending " + expiredPackets.Count + " packets to " + udpClient.AgentID + ", RTO=" + udpClient.RTO); | 408 | //m_log.Debug("[LLUDPSERVER]: Resending " + expiredPackets.Count + " packets to " + udpClient.AgentID + ", RTO=" + udpClient.RTO); |
409 | 409 | ||
410 | // Backoff the RTO | ||
411 | udpClient.RTO = Math.Min(udpClient.RTO * 2, 60000); | ||
412 | |||
410 | // Resend packets | 413 | // Resend packets |
411 | for (int i = 0; i < expiredPackets.Count; i++) | 414 | for (int i = 0; i < expiredPackets.Count; i++) |
412 | { | 415 | { |