aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
diff options
context:
space:
mode:
authorJohn Hurliman2009-10-29 15:24:31 -0700
committerJohn Hurliman2009-10-29 15:24:31 -0700
commit2913c24c8a5a4a50e9267aa125abcc7956a388d1 (patch)
treef1556d66cea9f8198a317960de93798ab6718a69 /OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
parentMore performance improvements to XEngine script loading (diff)
downloadopensim-SC_OLD-2913c24c8a5a4a50e9267aa125abcc7956a388d1.zip
opensim-SC_OLD-2913c24c8a5a4a50e9267aa125abcc7956a388d1.tar.gz
opensim-SC_OLD-2913c24c8a5a4a50e9267aa125abcc7956a388d1.tar.bz2
opensim-SC_OLD-2913c24c8a5a4a50e9267aa125abcc7956a388d1.tar.xz
* Commented out two noisy debug lines in the LLUDP server
* Misc. cleanup in ScenePresence.HandleAgentUpdate()
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
index dc72939..a211508 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
@@ -429,7 +429,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
429 429
430 if (expiredPackets != null) 430 if (expiredPackets != null)
431 { 431 {
432 m_log.Debug("[LLUDPSERVER]: Resending " + expiredPackets.Count + " packets to " + udpClient.AgentID + ", RTO=" + udpClient.RTO); 432 //m_log.Debug("[LLUDPSERVER]: Resending " + expiredPackets.Count + " packets to " + udpClient.AgentID + ", RTO=" + udpClient.RTO);
433 433
434 // Exponential backoff of the retransmission timeout 434 // Exponential backoff of the retransmission timeout
435 udpClient.BackoffRTO(); 435 udpClient.BackoffRTO();
@@ -585,7 +585,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
585 IClientAPI client; 585 IClientAPI client;
586 if (!m_scene.TryGetClient(address, out client) || !(client is LLClientView)) 586 if (!m_scene.TryGetClient(address, out client) || !(client is LLClientView))
587 { 587 {
588 m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName); 588 //m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName);
589 return; 589 return;
590 } 590 }
591 591