diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/UDPServer.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/UDPServer.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/ClientStack/UDPServer.cs b/OpenSim/Region/ClientStack/UDPServer.cs index a8a1ff6..47e0b3c 100644 --- a/OpenSim/Region/ClientStack/UDPServer.cs +++ b/OpenSim/Region/ClientStack/UDPServer.cs | |||
@@ -326,9 +326,9 @@ namespace OpenSim.Region.ClientStack | |||
326 | uint circuit; | 326 | uint circuit; |
327 | if (clientCircuits.TryGetValue(sender, out circuit)) | 327 | if (clientCircuits.TryGetValue(sender, out circuit)) |
328 | { | 328 | { |
329 | MainLog.Instance.Debug("UDPSERVER", "CloseEndPoint:ClosingCircuit"); | 329 | |
330 | m_packetServer.CloseCircuit(circuit); | 330 | m_packetServer.CloseCircuit(circuit); |
331 | MainLog.Instance.Debug("UDPSERVER", "CloseEndPoint:ClosedCircuit"); | 331 | |
332 | } | 332 | } |
333 | } | 333 | } |
334 | 334 | ||
@@ -381,13 +381,13 @@ namespace OpenSim.Region.ClientStack | |||
381 | EndPoint sendto = null; | 381 | EndPoint sendto = null; |
382 | if (clientCircuits_reverse.TryGetValue(circuitcode, out sendto)) | 382 | if (clientCircuits_reverse.TryGetValue(circuitcode, out sendto)) |
383 | { | 383 | { |
384 | MainLog.Instance.Debug("UDPSERVER", "RemovingClientCircuit"); | 384 | |
385 | clientCircuits.Remove(sendto); | 385 | clientCircuits.Remove(sendto); |
386 | MainLog.Instance.Debug("UDPSERVER", "Removed Client Circuit"); | 386 | |
387 | 387 | ||
388 | MainLog.Instance.Debug("UDPSERVER", "Removing Reverse ClientCircuit"); | 388 | |
389 | clientCircuits_reverse.Remove(circuitcode); | 389 | clientCircuits_reverse.Remove(circuitcode); |
390 | MainLog.Instance.Debug("UDPSERVER", "Removed Reverse ClientCircuit"); | 390 | |
391 | } | 391 | } |
392 | } | 392 | } |
393 | } | 393 | } |