aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
diff options
context:
space:
mode:
authormingchen2007-06-19 00:18:06 +0000
committermingchen2007-06-19 00:18:06 +0000
commit78af28744856aae9af944df2d4e5fa92af448121 (patch)
tree8a959884111fd6e1d089230888208dfde02cc03e /OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
parent*Updated/Added the base classes and interfaces for user and login servers (diff)
downloadopensim-SC_OLD-78af28744856aae9af944df2d4e5fa92af448121.zip
opensim-SC_OLD-78af28744856aae9af944df2d4e5fa92af448121.tar.gz
opensim-SC_OLD-78af28744856aae9af944df2d4e5fa92af448121.tar.bz2
opensim-SC_OLD-78af28744856aae9af944df2d4e5fa92af448121.tar.xz
*Added some missing files from last commit
*LoginService is now only used in LocalCommunications and not as a interface in RegionCommunications
Diffstat (limited to 'OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs')
-rw-r--r--OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs4
1 files changed, 0 insertions, 4 deletions
diff --git a/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs b/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
index e42e414..fb7dc7d 100644
--- a/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
+++ b/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
@@ -35,7 +35,6 @@ using OpenSim.Framework.Interfaces;
35using OpenSim.Framework.Types; 35using OpenSim.Framework.Types;
36using OpenGrid.Framework.Communications; 36using OpenGrid.Framework.Communications;
37 37
38using OpenSim.LocalCommunications.LocalLoginManagement;
39using OpenSim.LocalCommunications.LocalUserManagement; 38using OpenSim.LocalCommunications.LocalUserManagement;
40 39
41namespace OpenSim.LocalCommunications 40namespace OpenSim.LocalCommunications
@@ -44,14 +43,11 @@ namespace OpenSim.LocalCommunications
44 { 43 {
45 public LocalBackEndServices SandBoxManager = new LocalBackEndServices(); 44 public LocalBackEndServices SandBoxManager = new LocalBackEndServices();
46 public LocalUserServices UserServices = new LocalUserServices(); 45 public LocalUserServices UserServices = new LocalUserServices();
47 public LocalLoginService LoginService;
48 46
49 public CommunicationsLocal() 47 public CommunicationsLocal()
50 { 48 {
51 LoginService = new LocalLoginService(this.UserServices);
52 49
53 UserServer = UserServices; 50 UserServer = UserServices;
54 LoginServer = LoginService;
55 GridServer = SandBoxManager; 51 GridServer = SandBoxManager;
56 InterRegion = SandBoxManager; 52 InterRegion = SandBoxManager;
57 } 53 }