diff options
author | mingchen | 2007-06-19 00:18:06 +0000 |
---|---|---|
committer | mingchen | 2007-06-19 00:18:06 +0000 |
commit | 78af28744856aae9af944df2d4e5fa92af448121 (patch) | |
tree | 8a959884111fd6e1d089230888208dfde02cc03e /OpenSim/OpenSim.LocalCommunications/CommunicationsLocal.cs | |
parent | *Updated/Added the base classes and interfaces for user and login servers (diff) | |
download | opensim-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.cs | 4 |
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; | |||
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; | 38 | using OpenSim.LocalCommunications.LocalUserManagement; |
40 | 39 | ||
41 | namespace OpenSim.LocalCommunications | 40 | namespace 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 | } |