aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.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/RegionServerCommsLocal.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 '')
-rw-r--r--Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs16
1 files changed, 4 insertions, 12 deletions
diff --git a/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs b/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs
index bfcd15f..aeaeb7b 100644
--- a/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs
+++ b/Common/OpenGrid.Framework.Communications/RegionServerCommsLocal.cs
@@ -14,19 +14,11 @@ namespace OpenGrid.Framework.Communications
14 public SandBoxManager SandManager = new SandBoxManager(); 14 public SandBoxManager SandManager = new SandBoxManager();
15 public RegionServerCommsLocal() 15 public RegionServerCommsLocal()
16 { 16 {
17 userServer = new UserServer.UserCommsManagerLocal(); //Local User Server 17 UserServer = new UserServer.UserCommsManagerLocal(); //Local User Server
18 gridServer = new GridServer.GridCommsManagerLocal(SandManager); //Locl Grid Server 18 GridServer = new GridServer.GridCommsManagerLocal(SandManager); //Locl Grid Server
19 InterSims = new InterSimsCommsLocal(SandManager);
19 } 20 }
20 21
21 /// <summary> 22
22 /// informs a neighbouring sim to expect a child agent
23 /// </summary>
24 /// <param name="regionHandle"></param>
25 /// <param name="agentData"></param>
26 /// <returns></returns>
27 public override bool InformNeighbourOfChildAgent(ulong regionHandle, AgentCircuitData agentData) //should change from agentCircuitData
28 {
29 return SandManager.InformNeighbourOfChildAgent(regionHandle, agentData);
30 }
31 } 23 }
32} 24}