aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs
diff options
context:
space:
mode:
authorMW2007-06-10 19:08:51 +0000
committerMW2007-06-10 19:08:51 +0000
commitfd1a0a13749338ead01eddf59663704aae539ea7 (patch)
tree017c1a182764ecd1bd60f661f89e8e318b50bdfc /Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs
parentAdded SandBoxManager which in sandbox mode, acts as the backend server for th... (diff)
downloadopensim-SC_OLD-fd1a0a13749338ead01eddf59663704aae539ea7.zip
opensim-SC_OLD-fd1a0a13749338ead01eddf59663704aae539ea7.tar.gz
opensim-SC_OLD-fd1a0a13749338ead01eddf59663704aae539ea7.tar.bz2
opensim-SC_OLD-fd1a0a13749338ead01eddf59663704aae539ea7.tar.xz
Added InterSimComms (Likely to be renamed) to the commsManager and moved the InformClientOfNeighbours method into that.
Diffstat (limited to 'Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs')
-rw-r--r--Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs16
1 files changed, 3 insertions, 13 deletions
diff --git a/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs b/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs
index 75b211d..02f17f0 100644
--- a/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs
+++ b/Common/OpenGrid.Framework.Communications/RegionServerCommsOGS.cs
@@ -10,20 +10,10 @@ namespace OpenGrid.Framework.Communications
10 { 10 {
11 public RegionServerCommsOGS() 11 public RegionServerCommsOGS()
12 { 12 {
13 userServer = new UserServer.UserCommsManagerOGS(); //Remote User Server 13 UserServer = new UserServer.UserCommsManagerOGS(); //Remote User Server
14 gridServer = new GridServer.GridCommsManagerOGS(); //Remote Grid Server 14 GridServer = new GridServer.GridCommsManagerOGS(); //Remote Grid Server
15 InterSims = new InterSimsCommsOGS();
15 } 16 }
16 17
17
18 /// <summary>
19 /// informs a neighbouring sim to expect a child agent
20 /// </summary>
21 /// <param name="regionHandle"></param>
22 /// <param name="agentData"></param>
23 /// <returns></returns>
24 public override bool InformNeighbourOfChildAgent(ulong regionHandle, AgentCircuitData agentData) //should change from agentCircuitData
25 {
26 return false;
27 }
28 } 18 }
29} 19}