aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/GridCommsManager.cs
blob: 77848fa7d1149a8164354415b93401b664592797 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework.Types;
using OpenSim.Framework.Communications;
namespace OpenSim.Region.Communications.OGS1
{
    public class GridCommsManager : CommunicationsManager
    {
        private OGS1GridServices gridInterComms = new OGS1GridServices();
        public GridCommsManager(NetworkServersInfo serversInfo) :base(serversInfo)
        {
            GridServer = gridInterComms;
            InterRegion = gridInterComms;
            UserServer = new OGSUserServices();
        }
    }
}