diff options
Diffstat (limited to 'OpenSim/Region/Communications/Local')
-rw-r--r-- | OpenSim/Region/Communications/Local/LocalBackEndServices.cs | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalBackEndServices.cs b/OpenSim/Region/Communications/Local/LocalBackEndServices.cs index 4efaa23..746a19a 100644 --- a/OpenSim/Region/Communications/Local/LocalBackEndServices.cs +++ b/OpenSim/Region/Communications/Local/LocalBackEndServices.cs | |||
@@ -155,11 +155,28 @@ namespace OpenSim.Region.Communications.Local | |||
155 | return mapBlocks; | 155 | return mapBlocks; |
156 | } | 156 | } |
157 | 157 | ||
158 | /// <summary> | 158 | /// <summary> |
159 | /// </summary> | 159 | /// </summary> |
160 | /// <param name="regionHandle"></param> | 160 | /// <param name="regionHandle"></param> |
161 | /// <param name="agentData"></param> | 161 | /// <param name="agentData"></param> |
162 | /// <returns></returns> | 162 | /// <returns></returns> |
163 | /// | ||
164 | public bool RegionUp(RegionInfo region) | ||
165 | { | ||
166 | foreach (RegionCommsListener listener in m_regionListeners.Values) | ||
167 | { | ||
168 | listener.TriggerRegionUp(region); | ||
169 | } | ||
170 | |||
171 | return true; | ||
172 | } | ||
173 | |||
174 | public bool TriggerRegionUp(RegionInfo region) | ||
175 | { | ||
176 | |||
177 | return false; | ||
178 | } | ||
179 | |||
163 | public bool InformRegionOfChildAgent(ulong regionHandle, AgentCircuitData agentData) | 180 | public bool InformRegionOfChildAgent(ulong regionHandle, AgentCircuitData agentData) |
164 | //should change from agentCircuitData | 181 | //should change from agentCircuitData |
165 | { | 182 | { |