aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs
diff options
context:
space:
mode:
authorMW2007-06-10 12:01:09 +0000
committerMW2007-06-10 12:01:09 +0000
commit93f07a9fcef3c4b2df15d0f3bac3ea699fd5607e (patch)
tree99147a25c73e76a20bf7a13ad30219b67c5ee271 /Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs
parenta couple of changes/fixes (diff)
downloadopensim-SC_OLD-93f07a9fcef3c4b2df15d0f3bac3ea699fd5607e.zip
opensim-SC_OLD-93f07a9fcef3c4b2df15d0f3bac3ea699fd5607e.tar.gz
opensim-SC_OLD-93f07a9fcef3c4b2df15d0f3bac3ea699fd5607e.tar.bz2
opensim-SC_OLD-93f07a9fcef3c4b2df15d0f3bac3ea699fd5607e.tar.xz
Diffstat (limited to '')
-rw-r--r--Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs b/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs
index 38bce42..b3a4a8f 100644
--- a/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs
+++ b/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs
@@ -19,5 +19,20 @@ namespace OpenGrid.Framework.Communications
19 { 19 {
20 20
21 } 21 }
22
23 public virtual RegionCommsHostBase RegisterRegion(RegionInfo regionInfo)
24 {
25 return null;
26 }
27
28 public virtual List<RegionInfo> RequestNeighbours(RegionInfo regionInfo)
29 {
30 return null;
31 }
32
33 public virtual bool InformNeighbourOfChildAgent(ulong regionHandle, AgentCircuitData agentData) //should change from agentCircuitData
34 {
35 return false;
36 }
22 } 37 }
23} 38}