diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs index 75f783b..bd8273d 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | |||
@@ -710,14 +710,17 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
710 | IClientAPI client; | 710 | IClientAPI client; |
711 | if (!m_scene.TryGetClient(address, out client) || !(client is LLClientView)) | 711 | if (!m_scene.TryGetClient(address, out client) || !(client is LLClientView)) |
712 | { | 712 | { |
713 | //m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName); | 713 | // m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName); |
714 | return; | 714 | return; |
715 | } | 715 | } |
716 | 716 | ||
717 | udpClient = ((LLClientView)client).UDPClient; | 717 | udpClient = ((LLClientView)client).UDPClient; |
718 | 718 | ||
719 | if (!udpClient.IsConnected) | 719 | if (!udpClient.IsConnected) |
720 | { | ||
721 | // m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet for a unConnected client in " + m_scene.RegionInfo.RegionName); | ||
720 | return; | 722 | return; |
723 | } | ||
721 | 724 | ||
722 | #endregion Packet to Client Mapping | 725 | #endregion Packet to Client Mapping |
723 | 726 | ||