diff options
author | Charles Krinke | 2008-05-29 13:55:02 +0000 |
---|---|---|
committer | Charles Krinke | 2008-05-29 13:55:02 +0000 |
commit | a84456c2391e9fa7c5ade8244bf979118a3d0e29 (patch) | |
tree | 171bfef98548d185ed65643b23ec0dc6b528b5d6 /OpenSim/Region/Communications | |
parent | cleaning up returned XML REST doclet (no more xsi, xsd) (diff) | |
download | opensim-SC_OLD-a84456c2391e9fa7c5ade8244bf979118a3d0e29.zip opensim-SC_OLD-a84456c2391e9fa7c5ade8244bf979118a3d0e29.tar.gz opensim-SC_OLD-a84456c2391e9fa7c5ade8244bf979118a3d0e29.tar.bz2 opensim-SC_OLD-a84456c2391e9fa7c5ade8244bf979118a3d0e29.tar.xz |
Mantis#1411. Thank you kindly for Dataserver.cs and a patch
that adds function stub to request region info by name and
adds llRequestSimulatorData() and the dataserver event
Diffstat (limited to 'OpenSim/Region/Communications')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs index 5e7e238..cf0e0e8 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs | |||
@@ -397,7 +397,10 @@ namespace OpenSim.Region.Communications.OGS1 | |||
397 | 397 | ||
398 | public RegionInfo RequestClosestRegion(string regionName) | 398 | public RegionInfo RequestClosestRegion(string regionName) |
399 | { | 399 | { |
400 | // Don't use this method. It's only for SLURLS and Logins | 400 | foreach (RegionInfo ri in m_remoteRegionInfoCache.Values) |
401 | if(ri.RegionName == regionName) | ||
402 | return ri; | ||
403 | |||
401 | RegionInfo regionInfo = null; | 404 | RegionInfo regionInfo = null; |
402 | try | 405 | try |
403 | { | 406 | { |
@@ -438,7 +441,8 @@ namespace OpenSim.Region.Communications.OGS1 | |||
438 | regionInfo.RegionID = new LLUUID((string) responseData["region_UUID"]); | 441 | regionInfo.RegionID = new LLUUID((string) responseData["region_UUID"]); |
439 | regionInfo.RegionName = (string) responseData["region_name"]; | 442 | regionInfo.RegionName = (string) responseData["region_name"]; |
440 | 443 | ||
441 | m_remoteRegionInfoCache.Add(regionInfo.RegionHandle, regionInfo); | 444 | if(!m_remoteRegionInfoCache.ContainsKey(regionInfo.RegionHandle)) |
445 | m_remoteRegionInfoCache.Add(regionInfo.RegionHandle, regionInfo); | ||
442 | } | 446 | } |
443 | catch (WebException) | 447 | catch (WebException) |
444 | { | 448 | { |