blob: 1118726bf33a3f66d2f7b6100ed4e58892b017af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using OpenSim.Framework.Communications;
using OpenSim.Framework.Types;
namespace OpenSim.Region.Communications.OGS1
{
public class CommunicationsOGS1 : CommunicationsManager
{
public CommunicationsOGS1(NetworkServersInfo serversInfo) :base(serversInfo)
{
OGS1GridServices gridInterComms = new OGS1GridServices(serversInfo);
GridServer = gridInterComms;
InterRegion = gridInterComms;
UserServer = new OGS1UserServices(this);
}
}
}
|