aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/Local
diff options
context:
space:
mode:
authorTeravus Ovares2007-11-26 05:02:18 +0000
committerTeravus Ovares2007-11-26 05:02:18 +0000
commit175b6115f19f9bad7c81fde625250b3a7f8a33f2 (patch)
treef907f3b409eca34017f6e18dcf4d644b623d0302 /OpenSim/Region/Communications/Local
parentAdded Region name to the terrain texture description that gets sent to the as... (diff)
downloadopensim-SC_OLD-175b6115f19f9bad7c81fde625250b3a7f8a33f2.zip
opensim-SC_OLD-175b6115f19f9bad7c81fde625250b3a7f8a33f2.tar.gz
opensim-SC_OLD-175b6115f19f9bad7c81fde625250b3a7f8a33f2.tar.bz2
opensim-SC_OLD-175b6115f19f9bad7c81fde625250b3a7f8a33f2.tar.xz
* Restarting regions with the estate tools works in sandbox mode. I'm still working on grid mode, however. It doesn't break anything, but that feature doesn't work in grid mode yet either.
Diffstat (limited to 'OpenSim/Region/Communications/Local')
-rw-r--r--OpenSim/Region/Communications/Local/LocalBackEndServices.cs19
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 {