aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.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/RegionServerCommsManager.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/RegionServerCommsManager.cs')
-rw-r--r--Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs10
1 files changed, 3 insertions, 7 deletions
diff --git a/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs b/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs
index 810477a..e48ac71 100644
--- a/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs
+++ b/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs
@@ -12,17 +12,13 @@ namespace OpenGrid.Framework.Communications
12 12
13 public class RegionServerCommsManager 13 public class RegionServerCommsManager
14 { 14 {
15 public UserServer.UserCommsManagerBase userServer; 15 public UserServer.UserCommsManagerBase UserServer;
16 public GridServer.GridCommsManagerBase gridServer; 16 public GridServer.GridCommsManagerBase GridServer;
17 public InterSimsCommsBase InterSims;
17 18
18 public RegionServerCommsManager() 19 public RegionServerCommsManager()
19 { 20 {
20 21
21 } 22 }
22
23 public virtual bool InformNeighbourOfChildAgent(ulong regionHandle, AgentCircuitData agentData) //should change from agentCircuitData
24 {
25 return false;
26 }
27 } 23 }
28} 24}