diff options
author | Adam Frisby | 2008-11-18 00:47:30 +0000 |
---|---|---|
committer | Adam Frisby | 2008-11-18 00:47:30 +0000 |
commit | 434afaf717eef01f26b6b95ba8b4ae50fc470a4c (patch) | |
tree | 149637356d5a88ea2320fb3f56fd157c40cd41b1 /OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | |
parent | Prevent the texture downloader from locking a null object when a download (diff) | |
download | opensim-SC_OLD-434afaf717eef01f26b6b95ba8b4ae50fc470a4c.zip opensim-SC_OLD-434afaf717eef01f26b6b95ba8b4ae50fc470a4c.tar.gz opensim-SC_OLD-434afaf717eef01f26b6b95ba8b4ae50fc470a4c.tar.bz2 opensim-SC_OLD-434afaf717eef01f26b6b95ba8b4ae50fc470a4c.tar.xz |
* Added and removed debug information relating to client connections
* Minor client fixes
* Added the ability for a client to login without a UserProfile, allowing certain alternate clients to connect to the region.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | 3 |
1 files changed, 3 insertions, 0 deletions
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 | { |