diff options
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 | } |