diff options
author | mingchen | 2007-07-03 17:03:14 +0000 |
---|---|---|
committer | mingchen | 2007-07-03 17:03:14 +0000 |
commit | e06ffb3981d29ddb3383690b4a05dc684813b6d9 (patch) | |
tree | 5f8fcfe04d949007462689572988dfcc687d5ceb /OpenSim/Framework/Communications | |
parent | *Renamed OGS1 XmlRpcLoginToSimulatorMethod to the more appropriate XmlRpcSimu... (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Framework/Communications/IGridServices.cs | 9 |
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 | ||
32 | namespace OpenSim.Framework.Communications | 32 | namespace 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); |