aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-08-01 20:16:28 +0000
committerJustin Clarke Casey2008-08-01 20:16:28 +0000
commit3fc942558e25af7b596fcbf97bd3600165324860 (patch)
treeb949f3f63b2121a15179436cb9ddc403e3c8c7ff /OpenSim/Region
parent* minor: log message twiddling (diff)
downloadopensim-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
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs7
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)