diff options
author | John Hurliman | 2009-10-29 15:24:31 -0700 |
---|---|---|
committer | John Hurliman | 2009-10-29 15:24:31 -0700 |
commit | 2913c24c8a5a4a50e9267aa125abcc7956a388d1 (patch) | |
tree | f1556d66cea9f8198a317960de93798ab6718a69 /OpenSim/Region/ClientStack/LindenUDP | |
parent | More performance improvements to XEngine script loading (diff) | |
download | opensim-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 'OpenSim/Region/ClientStack/LindenUDP')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | 4 |
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 | ||