aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs3
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs3
2 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index b9bc888..3265817 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -775,7 +775,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
775 775
776 // Don't let a failure in an individual client thread crash the whole sim. 776 // Don't let a failure in an individual client thread crash the whole sim.
777 m_log.ErrorFormat( 777 m_log.ErrorFormat(
778 "[CLIENT]: Client thread for {0} {1} crashed. Logging them out. Exception {2}", Name, AgentId, e); 778 "[CLIENT]: Client thread for {0} {1} crashed. Logging them out.", Name, AgentId);
779 m_log.Error(e.ToString());
779 780
780 try 781 try
781 { 782 {
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
index b6aa961..01f2a09 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
@@ -89,6 +89,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
89 { 89 {
90 m_localScene = value; 90 m_localScene = value;
91 m_packetServer.LocalScene = m_localScene; 91 m_packetServer.LocalScene = m_localScene;
92
92 m_location = new Location(m_localScene.RegionInfo.RegionHandle); 93 m_location = new Location(m_localScene.RegionInfo.RegionHandle);
93 } 94 }
94 } 95 }
@@ -404,6 +405,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
404 /// <param name="epProxy"></param> 405 /// <param name="epProxy"></param>
405 protected virtual void AddNewClient(UseCircuitCodePacket useCircuit, EndPoint epSender, EndPoint epProxy) 406 protected virtual void AddNewClient(UseCircuitCodePacket useCircuit, EndPoint epSender, EndPoint epProxy)
406 { 407 {
408 m_log.Debug("[CONNECTION DEBUGGING] AddNewClient Called");
409
407 //Slave regions don't accept new clients 410 //Slave regions don't accept new clients
408 if (m_localScene.Region_Status != RegionStatus.SlaveScene) 411 if (m_localScene.Region_Status != RegionStatus.SlaveScene)
409 { 412 {