aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Common/OpenGrid.Framework.Communications
diff options
context:
space:
mode:
authorMW2007-05-31 12:52:17 +0000
committerMW2007-05-31 12:52:17 +0000
commitc194bfbada321c7ae99a67e8fe694cdb57cb843e (patch)
tree61f72fd7d474b7378a59b5f9b74839f385b35bec /Common/OpenGrid.Framework.Communications
parentDie AuthenticateSessionsRemote. hrrm okay don't die, just partially die (diff)
downloadopensim-SC_OLD-c194bfbada321c7ae99a67e8fe694cdb57cb843e.zip
opensim-SC_OLD-c194bfbada321c7ae99a67e8fe694cdb57cb843e.tar.gz
opensim-SC_OLD-c194bfbada321c7ae99a67e8fe694cdb57cb843e.tar.bz2
opensim-SC_OLD-c194bfbada321c7ae99a67e8fe694cdb57cb843e.tar.xz
Diffstat (limited to 'Common/OpenGrid.Framework.Communications')
-rw-r--r--Common/OpenGrid.Framework.Communications/OpenGrid.Framework.Communications.csproj4
-rw-r--r--Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs15
2 files changed, 17 insertions, 2 deletions
diff --git a/Common/OpenGrid.Framework.Communications/OpenGrid.Framework.Communications.csproj b/Common/OpenGrid.Framework.Communications/OpenGrid.Framework.Communications.csproj
index bda9184..80297f3 100644
--- a/Common/OpenGrid.Framework.Communications/OpenGrid.Framework.Communications.csproj
+++ b/Common/OpenGrid.Framework.Communications/OpenGrid.Framework.Communications.csproj
@@ -28,6 +28,10 @@
28 <WarningLevel>4</WarningLevel> 28 <WarningLevel>4</WarningLevel>
29 </PropertyGroup> 29 </PropertyGroup>
30 <ItemGroup> 30 <ItemGroup>
31 <Reference Include="libsecondlife, Version=0.9.0.0, Culture=neutral, processorArchitecture=MSIL">
32 <SpecificVersion>False</SpecificVersion>
33 <HintPath>..\..\bin\libsecondlife.dll</HintPath>
34 </Reference>
31 <Reference Include="System" /> 35 <Reference Include="System" />
32 <Reference Include="System.Data" /> 36 <Reference Include="System.Data" />
33 <Reference Include="System.Xml" /> 37 <Reference Include="System.Xml" />
diff --git a/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs b/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs
index c5413d2..4f42f8b 100644
--- a/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs
+++ b/Common/OpenGrid.Framework.Communications/RegionServerCommsManager.cs
@@ -4,6 +4,7 @@ using System.Text;
4using OpenSim.Framework; 4using OpenSim.Framework;
5using OpenSim.Framework.Interfaces; 5using OpenSim.Framework.Interfaces;
6using OpenSim.Framework.Types; 6using OpenSim.Framework.Types;
7using libsecondlife;
7 8
8namespace OpenGrid.Framework.Communications 9namespace OpenGrid.Framework.Communications
9{ 10{
@@ -19,7 +20,7 @@ namespace OpenGrid.Framework.Communications
19 /// 20 ///
20 /// </summary> 21 /// </summary>
21 /// <returns></returns> 22 /// <returns></returns>
22 public virtual RegionInfo LoadRegionConfigFromGridServer() 23 public virtual RegionInfo LoadRegionConfigFromGridServer(LLUUID regionID)
23 { 24 {
24 return null; 25 return null;
25 } 26 }
@@ -37,8 +38,18 @@ namespace OpenGrid.Framework.Communications
37 /// <summary> 38 /// <summary>
38 /// 39 ///
39 /// </summary> 40 /// </summary>
41 /// <param name="regionInfo"></param>
42 /// <returns></returns>
43 public virtual List<RegionInfo> RequestNeighbours(RegionInfo regionInfo)
44 {
45 return null;
46 }
47
48 /// <summary>
49 ///
50 /// </summary>
40 /// <returns></returns> 51 /// <returns></returns>
41 public virtual bool InformNeighbourOfChildAgent() 52 public virtual bool InformNeighbourOfChildAgent( uint regionHandle, AgentCircuitData agentData) //should change from agentCircuitData
42 { 53 {
43 return false; 54 return false;
44 } 55 }