diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs index ddfad82..9b9ccba 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | |||
@@ -726,8 +726,15 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
726 | // If this is a pending connection, enqueue, don't process yet | 726 | // If this is a pending connection, enqueue, don't process yet |
727 | lock (m_pendingCache) | 727 | lock (m_pendingCache) |
728 | { | 728 | { |
729 | <<<<<<< HEAD | ||
730 | <<<<<<< HEAD | ||
731 | m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName); | ||
732 | ======= | ||
733 | lock (m_pendingCache) | ||
734 | ======= | ||
729 | Queue<UDPPacketBuffer> queue; | 735 | Queue<UDPPacketBuffer> queue; |
730 | if (m_pendingCache.TryGetValue(address, out queue)) | 736 | if (m_pendingCache.TryGetValue(address, out queue)) |
737 | >>>>>>> 15a1ad393c3748c5c911beac981945a9bd8b200d | ||
731 | { | 738 | { |
732 | //m_log.DebugFormat("[LLUDPSERVER]: Enqueued a {0} packet into the pending queue", packet.Type); | 739 | //m_log.DebugFormat("[LLUDPSERVER]: Enqueued a {0} packet into the pending queue", packet.Type); |
733 | queue.Enqueue(buffer); | 740 | queue.Enqueue(buffer); |
@@ -735,10 +742,18 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
735 | } | 742 | } |
736 | } | 743 | } |
737 | 744 | ||
745 | <<<<<<< HEAD | ||
746 | <<<<<<< HEAD | ||
747 | // m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName); | ||
748 | >>>>>>> 2606484e45138adef289386509b1e27552a32aee | ||
749 | ======= | ||
750 | >>>>>>> 0baa1b557af20af3590737dc04294a9bdc8e8728 | ||
751 | ======= | ||
738 | // Determine which agent this packet came from | 752 | // Determine which agent this packet came from |
739 | if (client == null || !(client is LLClientView)) | 753 | if (client == null || !(client is LLClientView)) |
740 | { | 754 | { |
741 | //m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName); | 755 | //m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName); |
756 | >>>>>>> 15a1ad393c3748c5c911beac981945a9bd8b200d | ||
742 | return; | 757 | return; |
743 | } | 758 | } |
744 | 759 | ||
@@ -746,7 +761,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
746 | 761 | ||
747 | if (!udpClient.IsConnected) | 762 | if (!udpClient.IsConnected) |
748 | { | 763 | { |
749 | // m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet for a unConnected client in " + m_scene.RegionInfo.RegionName); | 764 | m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet for a unConnected client in " + m_scene.RegionInfo.RegionName); |
750 | return; | 765 | return; |
751 | } | 766 | } |
752 | 767 | ||