diff options
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index a48c536..2800cc4 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -364,9 +364,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
364 | 364 | ||
365 | public LLClientView(EndPoint remoteEP, IScene scene, AssetCache assetCache, LLPacketServer packServer, | 365 | public LLClientView(EndPoint remoteEP, IScene scene, AssetCache assetCache, LLPacketServer packServer, |
366 | AgentCircuitManager authenSessions, LLUUID agentId, LLUUID sessionId, uint circuitCode, EndPoint proxyEP) | 366 | AgentCircuitManager authenSessions, LLUUID agentId, LLUUID sessionId, uint circuitCode, EndPoint proxyEP) |
367 | { | 367 | { |
368 | m_log.Info("[CLIENT]: Started up new client thread to handle incoming request"); | ||
369 | |||
370 | m_moneyBalance = 1000; | 368 | m_moneyBalance = 1000; |
371 | 369 | ||
372 | m_channelVersion = Helpers.StringToField(scene.GetSimulatorVersion()); | 370 | m_channelVersion = Helpers.StringToField(scene.GetSimulatorVersion()); |
@@ -403,6 +401,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
403 | m_clientThread.Name = "ClientThread"; | 401 | m_clientThread.Name = "ClientThread"; |
404 | m_clientThread.IsBackground = true; | 402 | m_clientThread.IsBackground = true; |
405 | m_clientThread.Start(); | 403 | m_clientThread.Start(); |
404 | ThreadTracker.Add(m_clientThread); | ||
405 | |||
406 | m_log.Info("[CLIENT]: Started up new thread to handle client UDP session"); | ||
406 | } | 407 | } |
407 | 408 | ||
408 | public void SetDebug(int newDebug) | 409 | public void SetDebug(int newDebug) |