aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenGrid.Framework.Communications/GridServer/GridCommsManagerOGS.cs
blob: 415c1d857974eecd75c41b36fb3e67ab4b381b8a (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
30
31
32
33
34
35
36
using System;
using System.Collections.Generic;
using System.Text;

using OpenSim.Framework;
using OpenSim.Framework.Types;

namespace OpenGrid.Framework.Communications.GridServer
{
    public class GridCommsManagerOGS : GridCommsManagerBase
    {
        public GridCommsManagerOGS()
        {
        }

        public override RegionCommsHostBase RegisterRegion(RegionInfo regionInfo)
        {
            return null;
        }

        public override List<RegionInfo> RequestNeighbours(RegionInfo regionInfo)
        {
            return null;
        }

        public override bool InformNeighbourOfChildAgent(ulong regionHandle, AgentCircuitData agentData) //should change from agentCircuitData
        {
            return false;
        }

        public override bool AddNewSession(ulong regionHandle, Login loginData)
        {
            return false;
        }
    }
}