diff options
Diffstat (limited to 'OpenSim/Region/CoreModules/Communications/Local')
-rw-r--r-- | OpenSim/Region/CoreModules/Communications/Local/LocalInterregionComms.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Communications/Local/LocalInterregionComms.cs b/OpenSim/Region/CoreModules/Communications/Local/LocalInterregionComms.cs index 6e813f4..29bc4f7 100644 --- a/OpenSim/Region/CoreModules/Communications/Local/LocalInterregionComms.cs +++ b/OpenSim/Region/CoreModules/Communications/Local/LocalInterregionComms.cs | |||
@@ -227,6 +227,23 @@ namespace OpenSim.Region.CoreModules.Communications.Local | |||
227 | return false; | 227 | return false; |
228 | } | 228 | } |
229 | 229 | ||
230 | /** | ||
231 | * Region-related communications | ||
232 | */ | ||
233 | |||
234 | public bool SendHelloNeighbour(ulong regionHandle, RegionInfo thisRegion) | ||
235 | { | ||
236 | foreach (Scene s in m_sceneList) | ||
237 | { | ||
238 | if (s.RegionInfo.RegionHandle == regionHandle) | ||
239 | { | ||
240 | //m_log.Debug("[LOCAL COMMS]: Found region to SendHelloNeighbour"); | ||
241 | return s.IncomingHelloNeighbour(thisRegion); | ||
242 | } | ||
243 | } | ||
244 | return false; | ||
245 | } | ||
246 | |||
230 | #endregion /* IInterregionComms */ | 247 | #endregion /* IInterregionComms */ |
231 | 248 | ||
232 | #region Misc | 249 | #region Misc |