aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
diff options
context:
space:
mode:
authormingchen2007-06-18 20:10:19 +0000
committermingchen2007-06-18 20:10:19 +0000
commit56c4a3df5b9a13333fbe15160e9b7383a98e3675 (patch)
tree7df9c5c4e41bb9c1751f23627ab1d74dadf6b6a0 /OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
parent* example soft logger by delegate (diff)
downloadopensim-SC_OLD-56c4a3df5b9a13333fbe15160e9b7383a98e3675.zip
opensim-SC_OLD-56c4a3df5b9a13333fbe15160e9b7383a98e3675.tar.gz
opensim-SC_OLD-56c4a3df5b9a13333fbe15160e9b7383a98e3675.tar.bz2
opensim-SC_OLD-56c4a3df5b9a13333fbe15160e9b7383a98e3675.tar.xz
*Updated/Added the base classes and interfaces for user and login servers
*Not yet usable, but I'm working on it
Diffstat (limited to 'OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs')
-rw-r--r--OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs12
1 files changed, 10 insertions, 2 deletions
diff --git a/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs b/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
index 9b811ae..e42e414 100644
--- a/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
+++ b/OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs
@@ -35,15 +35,23 @@ 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;
40
38namespace OpenSim.LocalCommunications 41namespace OpenSim.LocalCommunications
39{ 42{
40 public class CommunicationsLocal : CommunicationsManager 43 public class CommunicationsLocal : CommunicationsManager
41 { 44 {
42 public LocalBackEndServices SandBoxManager = new LocalBackEndServices(); 45 public LocalBackEndServices SandBoxManager = new LocalBackEndServices();
43 46 public LocalUserServices UserServices = new LocalUserServices();
47 public LocalLoginService LoginService;
48
44 public CommunicationsLocal() 49 public CommunicationsLocal()
45 { 50 {
46 UserServer = null; 51 LoginService = new LocalLoginService(this.UserServices);
52
53 UserServer = UserServices;
54 LoginServer = LoginService;
47 GridServer = SandBoxManager; 55 GridServer = SandBoxManager;
48 InterRegion = SandBoxManager; 56 InterRegion = SandBoxManager;
49 } 57 }