aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-01-25 19:24:25 +0000
committerJustin Clarke Casey2008-01-25 19:24:25 +0000
commit90c853685c14e186a3dfd06b7a584d16bf520ccf (patch)
treec55acd1c4577b257da0cb73f9b092e1ac79912e7 /OpenSim/Region/Application
parentImplemented a suggestion from Mic Bowman regarding border crossing and Signif... (diff)
downloadopensim-SC_OLD-90c853685c14e186a3dfd06b7a584d16bf520ccf.zip
opensim-SC_OLD-90c853685c14e186a3dfd06b7a584d16bf520ccf.tar.gz
opensim-SC_OLD-90c853685c14e186a3dfd06b7a584d16bf520ccf.tar.bz2
opensim-SC_OLD-90c853685c14e186a3dfd06b7a584d16bf520ccf.tar.xz
* Add very basic initial login stats to the user server
* Typing 'stats' on the command line will given total number of successful logins today and yesterday * A little bit more to come, probably * Refactoring will follow next
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r--OpenSim/Region/Application/OpenSimMain.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSimMain.cs b/OpenSim/Region/Application/OpenSimMain.cs
index 9da1c05..9484e15 100644
--- a/OpenSim/Region/Application/OpenSimMain.cs
+++ b/OpenSim/Region/Application/OpenSimMain.cs
@@ -327,9 +327,10 @@ namespace OpenSim
327 inventoryService, backendService, backendService, m_dumpAssetsToFile); 327 inventoryService, backendService, backendService, m_dumpAssetsToFile);
328 m_commsManager = localComms; 328 m_commsManager = localComms;
329 329
330 // TODO No user stats collection yet for standalone
330 m_loginService = 331 m_loginService =
331 new LocalLoginService(userService, m_standaloneWelcomeMessage, localComms, m_networkServersInfo, 332 new LocalLoginService(userService, m_standaloneWelcomeMessage, localComms, m_networkServersInfo,
332 m_standaloneAuthenticate); 333 null, m_standaloneAuthenticate);
333 m_loginService.OnLoginToRegion += backendService.AddNewSession; 334 m_loginService.OnLoginToRegion += backendService.AddNewSession;
334 335
335 // XMLRPC action 336 // XMLRPC action