diff options
author | Diva Canto | 2009-12-31 20:51:35 -0800 |
---|---|---|
committer | Diva Canto | 2009-12-31 20:51:35 -0800 |
commit | 1387919c204eb66ab6a37eb0fdf0f3c38f0a6813 (patch) | |
tree | 0d81478dd2db845a78161a1a0879ae0aee023028 /OpenSim/Server/Handlers/Login | |
parent | Merge branch 'presence-refactor' of ssh://diva@opensimulator.org/var/git/open... (diff) | |
download | opensim-SC_OLD-1387919c204eb66ab6a37eb0fdf0f3c38f0a6813.zip opensim-SC_OLD-1387919c204eb66ab6a37eb0fdf0f3c38f0a6813.tar.gz opensim-SC_OLD-1387919c204eb66ab6a37eb0fdf0f3c38f0a6813.tar.bz2 opensim-SC_OLD-1387919c204eb66ab6a37eb0fdf0f3c38f0a6813.tar.xz |
Yes! First test of new login service done still in 2009! Bombs in auth, because the data migration is missing. Will fix it next year...
* HAPPY NEW YEAR!
Diffstat (limited to 'OpenSim/Server/Handlers/Login')
-rw-r--r-- | OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs b/OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs index 42ecd4d..d5e073c 100644 --- a/OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs +++ b/OpenSim/Server/Handlers/Login/LLLoginServiceInConnector.cs | |||
@@ -47,6 +47,7 @@ namespace OpenSim.Server.Handlers.Login | |||
47 | public LLLoginServiceInConnector(IConfigSource config, IHttpServer server, IScene scene) : | 47 | public LLLoginServiceInConnector(IConfigSource config, IHttpServer server, IScene scene) : |
48 | base(config, server, String.Empty) | 48 | base(config, server, String.Empty) |
49 | { | 49 | { |
50 | m_log.Debug("[LLLOGIN IN CONNECTOR]: Starting..."); | ||
50 | string loginService = ReadLocalServiceFromConfig(config); | 51 | string loginService = ReadLocalServiceFromConfig(config); |
51 | 52 | ||
52 | ISimulationService simService = scene.RequestModuleInterface<ISimulationService>(); | 53 | ISimulationService simService = scene.RequestModuleInterface<ISimulationService>(); |
@@ -85,7 +86,7 @@ namespace OpenSim.Server.Handlers.Login | |||
85 | private void InitializeHandlers(IHttpServer server) | 86 | private void InitializeHandlers(IHttpServer server) |
86 | { | 87 | { |
87 | LLLoginHandlers loginHandlers = new LLLoginHandlers(m_LoginService); | 88 | LLLoginHandlers loginHandlers = new LLLoginHandlers(m_LoginService); |
88 | server.AddXmlRPCHandler("Login_to_simulator", loginHandlers.HandleXMLRPCLogin, false); | 89 | server.AddXmlRPCHandler("login_to_simulator", loginHandlers.HandleXMLRPCLogin, false); |
89 | server.SetDefaultLLSDHandler(loginHandlers.HandleLLSDLogin); | 90 | server.SetDefaultLLSDHandler(loginHandlers.HandleLLSDLogin); |
90 | } | 91 | } |
91 | 92 | ||