aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/IGridServices.cs
diff options
context:
space:
mode:
authormingchen2007-07-03 17:03:14 +0000
committermingchen2007-07-03 17:03:14 +0000
commite06ffb3981d29ddb3383690b4a05dc684813b6d9 (patch)
tree5f8fcfe04d949007462689572988dfcc687d5ceb /OpenSim/Framework/Communications/IGridServices.cs
parent*Renamed OGS1 XmlRpcLoginToSimulatorMethod to the more appropriate XmlRpcSimu... (diff)
downloadopensim-SC_OLD-e06ffb3981d29ddb3383690b4a05dc684813b6d9.zip
opensim-SC_OLD-e06ffb3981d29ddb3383690b4a05dc684813b6d9.tar.gz
opensim-SC_OLD-e06ffb3981d29ddb3383690b4a05dc684813b6d9.tar.bz2
opensim-SC_OLD-e06ffb3981d29ddb3383690b4a05dc684813b6d9.tar.xz
*Removed GridInfo class as it has been previously replaced with the much better NetworkServersInfo class
*Got the GridServer in OGS1 to go through with registering the region, but the actual storage of the region isnt working right now. **After this is fixed, grid mode should work!
Diffstat (limited to 'OpenSim/Framework/Communications/IGridServices.cs')
-rw-r--r--OpenSim/Framework/Communications/IGridServices.cs9
1 files changed, 2 insertions, 7 deletions
diff --git a/OpenSim/Framework/Communications/IGridServices.cs b/OpenSim/Framework/Communications/IGridServices.cs
index c168c20..c296209 100644
--- a/OpenSim/Framework/Communications/IGridServices.cs
+++ b/OpenSim/Framework/Communications/IGridServices.cs
@@ -31,16 +31,11 @@ using OpenSim.Framework.Types;
31 31
32namespace OpenSim.Framework.Communications 32namespace OpenSim.Framework.Communications
33{ 33{
34 public class GridInfo 34
35 {
36 public string GridServerURI = "http://grid.deepgrid.com:8001/"; // Temporarily hardcoded.
37 public string GridServerSendKey = "badger";
38 public string GridServerRecvKey = "badger";
39 }
40 35
41 public interface IGridServices 36 public interface IGridServices
42 { 37 {
43 RegionCommsListener RegisterRegion(RegionInfo regionInfo, GridInfo gridInfo); 38 RegionCommsListener RegisterRegion(RegionInfo regionInfos);
44 List<RegionInfo> RequestNeighbours(RegionInfo regionInfo); 39 List<RegionInfo> RequestNeighbours(RegionInfo regionInfo);
45 RegionInfo RequestNeighbourInfo(ulong regionHandle); 40 RegionInfo RequestNeighbourInfo(ulong regionHandle);
46 List<MapBlockData> RequestNeighbourMapBlocks(int minX, int minY, int maxX, int maxY); 41 List<MapBlockData> RequestNeighbourMapBlocks(int minX, int minY, int maxX, int maxY);