From fa8f143aec69e36ee90fb34e2f144733b66ca951 Mon Sep 17 00:00:00 2001 From: mingchen Date: Sat, 9 Jun 2007 21:04:13 +0000 Subject: *Reorganized RegionServerCommsManager for OGS and local support --- .../GridServer/GridCommsManagerOGS.cs | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Common/OpenGrid.Framework.Communications/GridServer/GridCommsManagerOGS.cs (limited to 'Common/OpenGrid.Framework.Communications/GridServer/GridCommsManagerOGS.cs') diff --git a/Common/OpenGrid.Framework.Communications/GridServer/GridCommsManagerOGS.cs b/Common/OpenGrid.Framework.Communications/GridServer/GridCommsManagerOGS.cs new file mode 100644 index 0000000..415c1d8 --- /dev/null +++ b/Common/OpenGrid.Framework.Communications/GridServer/GridCommsManagerOGS.cs @@ -0,0 +1,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 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; + } + } +} -- cgit v1.1