From c9a24ece546fb20977d27abef736cd5e45d976e2 Mon Sep 17 00:00:00 2001 From: Melanie Date: Fri, 4 Sep 2009 03:13:32 +0100 Subject: More work on new authentication service --- .../Server/Handlers/Authentication/AuthenticationServerConnector.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Server/Handlers') diff --git a/OpenSim/Server/Handlers/Authentication/AuthenticationServerConnector.cs b/OpenSim/Server/Handlers/Authentication/AuthenticationServerConnector.cs index c3c2f69..03a7980 100644 --- a/OpenSim/Server/Handlers/Authentication/AuthenticationServerConnector.cs +++ b/OpenSim/Server/Handlers/Authentication/AuthenticationServerConnector.cs @@ -36,7 +36,7 @@ namespace OpenSim.Server.Handlers.Authentication { public class AuthenticationServiceConnector : ServiceConnector { - //private IAuthenticationService m_AuthenticationService; + private IAuthenticationService m_AuthenticationService; public AuthenticationServiceConnector(IConfigSource config, IHttpServer server) : base(config, server) @@ -51,8 +51,8 @@ namespace OpenSim.Server.Handlers.Authentication if (authenticationService == String.Empty) throw new Exception("No AuthenticationService in config file"); - //Object[] args = new Object[] { config }; - //m_AuthenticationService = ServerUtils.LoadPlugin(authenticationService, args); + Object[] args = new Object[] { config }; + m_AuthenticationService = ServerUtils.LoadPlugin(authenticationService, args); //server.AddStreamHandler(new AuthenticationServerGetHandler(m_AuthenticationService)); } -- cgit v1.1