diff options
author | Justin Clarke Casey | 2008-08-01 20:16:28 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-08-01 20:16:28 +0000 |
commit | 3fc942558e25af7b596fcbf97bd3600165324860 (patch) | |
tree | b949f3f63b2121a15179436cb9ddc403e3c8c7ff | |
parent | * minor: log message twiddling (diff) | |
download | opensim-SC_OLD-3fc942558e25af7b596fcbf97bd3600165324860.zip opensim-SC_OLD-3fc942558e25af7b596fcbf97bd3600165324860.tar.gz opensim-SC_OLD-3fc942558e25af7b596fcbf97bd3600165324860.tar.bz2 opensim-SC_OLD-3fc942558e25af7b596fcbf97bd3600165324860.tar.xz |
* start tracking viewer session threads
-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) |