aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs
diff options
context:
space:
mode:
authorMelanie2009-09-04 03:13:32 +0100
committerMelanie2009-09-04 03:13:32 +0100
commitc9a24ece546fb20977d27abef736cd5e45d976e2 (patch)
tree65a1a6079ad2f904f770670fc0d9e64849e362c3 /OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs
parentFlech out the Authentication service. Add the database loader. Introduce (diff)
downloadopensim-SC_OLD-c9a24ece546fb20977d27abef736cd5e45d976e2.zip
opensim-SC_OLD-c9a24ece546fb20977d27abef736cd5e45d976e2.tar.gz
opensim-SC_OLD-c9a24ece546fb20977d27abef736cd5e45d976e2.tar.bz2
opensim-SC_OLD-c9a24ece546fb20977d27abef736cd5e45d976e2.tar.xz
More work on new authentication service
Diffstat (limited to '')
-rw-r--r--OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs
index 5c83299..83ce0d0 100644
--- a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs
+++ b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs
@@ -26,11 +26,15 @@
26 */ 26 */
27 27
28using System; 28using System;
29using System.Collections.Generic;
29using OpenMetaverse; 30using OpenMetaverse;
30using OpenSim.Services.Interfaces; 31using OpenSim.Services.Interfaces;
31using log4net; 32using log4net;
32using Nini.Config; 33using Nini.Config;
33using System.Reflection; 34using System.Reflection;
35using OpenSim.Data;
36using OpenSim.Framework;
37using OpenSim.Framework.Console;
34 38
35namespace OpenSim.Services.AuthenticationService 39namespace OpenSim.Services.AuthenticationService
36{ 40{