diff options
author | mingchen | 2007-06-18 20:10:19 +0000 |
---|---|---|
committer | mingchen | 2007-06-18 20:10:19 +0000 |
commit | 56c4a3df5b9a13333fbe15160e9b7383a98e3675 (patch) | |
tree | 7df9c5c4e41bb9c1751f23627ab1d74dadf6b6a0 /OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs | |
parent | * example soft logger by delegate (diff) | |
download | opensim-SC-56c4a3df5b9a13333fbe15160e9b7383a98e3675.zip opensim-SC-56c4a3df5b9a13333fbe15160e9b7383a98e3675.tar.gz opensim-SC-56c4a3df5b9a13333fbe15160e9b7383a98e3675.tar.bz2 opensim-SC-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.cs | 12 |
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; | |||
35 | using OpenSim.Framework.Types; | 35 | using OpenSim.Framework.Types; |
36 | using OpenGrid.Framework.Communications; | 36 | using OpenGrid.Framework.Communications; |
37 | 37 | ||
38 | using OpenSim.LocalCommunications.LocalLoginManagement; | ||
39 | using OpenSim.LocalCommunications.LocalUserManagement; | ||
40 | |||
38 | namespace OpenSim.LocalCommunications | 41 | namespace 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 | } |