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/Environment/Scenes | |
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/Environment/Scenes')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 1be0617..2b667c9 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -2912,6 +2912,11 @@ namespace OpenSim.Region.Environment.Scenes | |||
2912 | } | 2912 | } |
2913 | } | 2913 | } |
2914 | 2914 | ||
2915 | public RegionInfo RequestClosestRegion(string name) | ||
2916 | { | ||
2917 | return m_sceneGridService.RequestClosestRegion(name); | ||
2918 | } | ||
2919 | |||
2915 | #endregion | 2920 | #endregion |
2916 | 2921 | ||
2917 | #region Script Engine | 2922 | #region Script Engine |
diff --git a/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs b/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs index 885d1e9..d2d75e8 100644 --- a/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs +++ b/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs | |||
@@ -112,6 +112,11 @@ namespace OpenSim.Region.Environment.Scenes | |||
112 | } | 112 | } |
113 | } | 113 | } |
114 | 114 | ||
115 | public RegionInfo RequestClosestRegion(string name) | ||
116 | { | ||
117 | return m_commsProvider.GridService.RequestClosestRegion(name); | ||
118 | } | ||
119 | |||
115 | public void Close() | 120 | public void Close() |
116 | { | 121 | { |
117 | if (regionCommsHost != null) | 122 | if (regionCommsHost != null) |