From 56c4a3df5b9a13333fbe15160e9b7383a98e3675 Mon Sep 17 00:00:00 2001 From: mingchen Date: Mon, 18 Jun 2007 20:10:19 +0000 Subject: *Updated/Added the base classes and interfaces for user and login servers *Not yet usable, but I'm working on it --- .../CommunicationsLocal.cs | 12 +++++-- .../OpenSim.LocalCommunications.csproj | 39 ++++++++++++++-------- 2 files changed, 35 insertions(+), 16 deletions(-) (limited to 'OpenSim') 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; using OpenSim.Framework.Types; using OpenGrid.Framework.Communications; +using OpenSim.LocalCommunications.LocalLoginManagement; +using OpenSim.LocalCommunications.LocalUserManagement; + namespace OpenSim.LocalCommunications { public class CommunicationsLocal : CommunicationsManager { public LocalBackEndServices SandBoxManager = new LocalBackEndServices(); - + public LocalUserServices UserServices = new LocalUserServices(); + public LocalLoginService LoginService; + public CommunicationsLocal() { - UserServer = null; + LoginService = new LocalLoginService(this.UserServices); + + UserServer = UserServices; + LoginServer = LoginService; GridServer = SandBoxManager; InterRegion = SandBoxManager; } diff --git a/OpenSim/OpenSim.LocalCommunications/OpenSim.LocalCommunications.csproj b/OpenSim/OpenSim.LocalCommunications/OpenSim.LocalCommunications.csproj index 95c9f98..af5d2d3 100644 --- a/OpenSim/OpenSim.LocalCommunications/OpenSim.LocalCommunications.csproj +++ b/OpenSim/OpenSim.LocalCommunications/OpenSim.LocalCommunications.csproj @@ -1,4 +1,4 @@ - + Local 8.0.50727 @@ -6,7 +6,8 @@ {79CED992-0000-0000-0000-000000000000} Debug AnyCPU - + + OpenSim.LocalCommunications @@ -15,9 +16,11 @@ IE50 false Library - + + OpenSim.LocalCommunications - + + @@ -28,7 +31,8 @@ TRACE;DEBUG - + + True 4096 False @@ -37,7 +41,8 @@ False False 4 - + + False @@ -46,7 +51,8 @@ TRACE - + + False 4096 True @@ -55,18 +61,20 @@ False False 4 - + + - + ..\..\bin\libsecondlife.dll False - + System.dll False - + + System.Xml.dll False @@ -76,13 +84,13 @@ OpenGrid.Framework.Communications {683344D5-0000-0000-0000-000000000000} {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - False + False OpenSim.Framework {8ACA2445-0000-0000-0000-000000000000} {FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - False + False @@ -92,6 +100,9 @@ Code + + + Code @@ -103,4 +114,4 @@ - + \ No newline at end of file -- cgit v1.1