aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
diff options
context:
space:
mode:
authorJohn Hurliman2009-10-09 02:13:21 -0700
committerJohn Hurliman2009-10-09 02:13:21 -0700
commita3e31cdeafbcfd371291213413b6d0d97a71c13b (patch)
tree9472612d69b1d868a06edc3be2dda9d605662508 /OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
parentCalling .Close() on AutoResetEvent and ManualResetEvent (those classes contai... (diff)
downloadopensim-SC_OLD-a3e31cdeafbcfd371291213413b6d0d97a71c13b.zip
opensim-SC_OLD-a3e31cdeafbcfd371291213413b6d0d97a71c13b.tar.gz
opensim-SC_OLD-a3e31cdeafbcfd371291213413b6d0d97a71c13b.tar.bz2
opensim-SC_OLD-a3e31cdeafbcfd371291213413b6d0d97a71c13b.tar.xz
Added more debugging output to the "unrecognized source" warning
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
index 9aeea9a..7052e0e 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
@@ -504,7 +504,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
504 // Determine which agent this packet came from 504 // Determine which agent this packet came from
505 if (!m_clients.TryGetValue(address, out client)) 505 if (!m_clients.TryGetValue(address, out client))
506 { 506 {
507 m_log.Warn("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address); 507 m_log.Warn("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address +
508 ", currently tracking " + m_clients.Count + " clients");
508 return; 509 return;
509 } 510 }
510 511