2007-06-24 18:40:02 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text;
|
2007-06-25 16:01:30 +00:00
|
|
|
using OpenSim.Framework.Types;
|
2007-06-24 18:40:02 +00:00
|
|
|
using OpenGrid.Framework.Communications;
|
|
|
|
namespace OpenGrid.Framework.Communications.OGS1
|
|
|
|
{
|
|
|
|
public class GridCommsManager : CommunicationsManager
|
|
|
|
{
|
2007-06-25 16:01:30 +00:00
|
|
|
public GridCommsManager(NetworkServersInfo serversInfo) :base(serversInfo)
|
2007-06-24 18:40:02 +00:00
|
|
|
{
|
|
|
|
GridServer = new OGS1GridServices();
|
|
|
|
InterRegion = new OGSInterSimComms();
|
|
|
|
UserServer = new OGSUserServices();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|