aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorubit2012-06-22 19:31:04 +0200
committerubit2012-06-22 19:31:04 +0200
commitb3d88f545de1f036effbc2b6b53fb1af09252c9f (patch)
tree795cdba5ed6cb799956250278844f01bad797c29
parentMerge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork (diff)
parent coment out some of previus debug messaged before forgetting about them... (diff)
downloadopensim-SC_OLD-b3d88f545de1f036effbc2b6b53fb1af09252c9f.zip
opensim-SC_OLD-b3d88f545de1f036effbc2b6b53fb1af09252c9f.tar.gz
opensim-SC_OLD-b3d88f545de1f036effbc2b6b53fb1af09252c9f.tar.bz2
opensim-SC_OLD-b3d88f545de1f036effbc2b6b53fb1af09252c9f.tar.xz
Merge branch 'ubitwork' of ssh://3dhosting.de/var/git/careminster into ubitwork
-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 c64b5f2..bd8273d 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