aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP
diff options
context:
space:
mode:
authorubit2012-07-15 23:54:24 +0200
committerubit2012-07-15 23:54:24 +0200
commit1b81a2bd49beda587e805281e9e0b28dce033310 (patch)
tree19fd8ee9eb9478d5304dc639272133415ecb38e5 /OpenSim/Region/ClientStack/Linden/UDP
parentMerge branch 'avination' into ubitwork (diff)
downloadopensim-SC_OLD-1b81a2bd49beda587e805281e9e0b28dce033310.zip
opensim-SC_OLD-1b81a2bd49beda587e805281e9e0b28dce033310.tar.gz
opensim-SC_OLD-1b81a2bd49beda587e805281e9e0b28dce033310.tar.bz2
opensim-SC_OLD-1b81a2bd49beda587e805281e9e0b28dce033310.tar.xz
to stash
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
index bd8273d..c64b5f2 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs
@@ -710,7 +710,7 @@ 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
@@ -718,7 +718,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
718 718
719 if (!udpClient.IsConnected) 719 if (!udpClient.IsConnected)
720 { 720 {
721// m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet for a unConnected client in " + m_scene.RegionInfo.RegionName); 721 m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet for a unConnected client in " + m_scene.RegionInfo.RegionName);
722 return; 722 return;
723 } 723 }
724 724