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 | |
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')
-rw-r--r-- | OpenSim/Framework/Communications/IGridServices.cs | 9 | ||||
-rw-r--r-- | OpenSim/Framework/General/Types/NetworkServersInfo.cs | 2 |
2 files changed, 3 insertions, 8 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); |
diff --git a/OpenSim/Framework/General/Types/NetworkServersInfo.cs b/OpenSim/Framework/General/Types/NetworkServersInfo.cs index 89ebf94..142edc0 100644 --- a/OpenSim/Framework/General/Types/NetworkServersInfo.cs +++ b/OpenSim/Framework/General/Types/NetworkServersInfo.cs | |||
@@ -121,7 +121,7 @@ namespace OpenSim.Framework.Types | |||
121 | attri = configData.GetAttribute("GridServerURL"); | 121 | attri = configData.GetAttribute("GridServerURL"); |
122 | if (attri == "") | 122 | if (attri == "") |
123 | { | 123 | { |
124 | this.GridURL = MainLog.Instance.CmdPrompt("Grid server URL", "http://127.0.0.1:8001/"); | 124 | this.GridURL = MainLog.Instance.CmdPrompt("Grid server URL", "http://127.0.0.1:13801/"); |
125 | configData.SetAttribute("GridServerURL", this.GridURL); | 125 | configData.SetAttribute("GridServerURL", this.GridURL); |
126 | } | 126 | } |
127 | else | 127 | else |