*Added some missing files from last commit

*LoginService is now only used in LocalCommunications and not as a interface in RegionCommunications
This commit is contained in:
mingchen
2007-06-19 00:18:06 +00:00
parent 56c4a3df5b
commit 78af287448
6 changed files with 79 additions and 7 deletions

View File

@@ -35,7 +35,6 @@ using OpenSim.Framework.Interfaces;
using OpenSim.Framework.Types;
using OpenGrid.Framework.Communications;
using OpenSim.LocalCommunications.LocalLoginManagement;
using OpenSim.LocalCommunications.LocalUserManagement;
namespace OpenSim.LocalCommunications
@@ -44,14 +43,11 @@ namespace OpenSim.LocalCommunications
{
public LocalBackEndServices SandBoxManager = new LocalBackEndServices();
public LocalUserServices UserServices = new LocalUserServices();
public LocalLoginService LoginService;
public CommunicationsLocal()
{
LoginService = new LocalLoginService(this.UserServices);
UserServer = UserServices;
LoginServer = LoginService;
GridServer = SandBoxManager;
InterRegion = SandBoxManager;
}