aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs
blob: 75b211d5b011de9fbb753f951ac61df5c83d2fb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System;
using System.Collections.Generic;
using System.Text;
using OpenSim.Framework;
using OpenSim.Framework.Types;

namespace OpenGrid.Framework.Communications
{
    public class RegionServerCommsOGS : RegionServerCommsManager
    {
        public RegionServerCommsOGS()
        {
            userServer = new UserServer.UserCommsManagerOGS(); //Remote User Server
            gridServer = new GridServer.GridCommsManagerOGS(); //Remote Grid Server
        }


        /// <summary>
        /// informs a neighbouring sim to expect a child agent
        /// </summary>
        /// <param name="regionHandle"></param>
        /// <param name="agentData"></param>
        /// <returns></returns>
        public override bool InformNeighbourOfChildAgent(ulong regionHandle, AgentCircuitData agentData) //should change from agentCircuitData
        {
            return false;
        }
    }
}