aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
diff options
context:
space:
mode:
authorJohn Hurliman2009-10-23 01:33:43 -0700
committerJohn Hurliman2009-10-23 01:33:43 -0700
commit37f7277378d38cdf2633e79d551cc0c83bf5e479 (patch)
tree0e3e29f1f71c9676b3345327770648f189e4ae05 /OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
parent* Changed the max RTO value to 60 seconds to comply with RFC 2988 (diff)
downloadopensim-SC_OLD-37f7277378d38cdf2633e79d551cc0c83bf5e479.zip
opensim-SC_OLD-37f7277378d38cdf2633e79d551cc0c83bf5e479.tar.gz
opensim-SC_OLD-37f7277378d38cdf2633e79d551cc0c83bf5e479.tar.bz2
opensim-SC_OLD-37f7277378d38cdf2633e79d551cc0c83bf5e479.tar.xz
Uncommented the resend log line so the previous commit can be seen in action
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
index 7e929e5..e9faf2e 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
@@ -405,7 +405,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
405 405
406 if (expiredPackets != null) 406 if (expiredPackets != null)
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 410 // Backoff the RTO
411 udpClient.RTO = Math.Min(udpClient.RTO * 2, 60000); 411 udpClient.RTO = Math.Min(udpClient.RTO * 2, 60000);