diff options
author | Melanie | 2019-08-09 11:02:04 +0100 |
---|---|---|
committer | Melanie | 2019-08-09 11:02:04 +0100 |
commit | f332f3fc41345581f94c795e86e918c2c28f1512 (patch) | |
tree | f4a4999f12ae0ece73c0c455ae06178b9ce728a4 /OpenSim/Region | |
parent | No idea where this diff comes from - change case to lower (diff) | |
parent | add cap EstateChangeInfo (diff) | |
download | opensim-SC-f332f3fc41345581f94c795e86e918c2c28f1512.zip opensim-SC-f332f3fc41345581f94c795e86e918c2c28f1512.tar.gz opensim-SC-f332f3fc41345581f94c795e86e918c2c28f1512.tar.bz2 opensim-SC-f332f3fc41345581f94c795e86e918c2c28f1512.tar.xz |
Merge branch 'master' of brain.opensimulator.org:/var/git/opensim
Diffstat (limited to 'OpenSim/Region')
4 files changed, 291 insertions, 24 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/EstateChangeInfo.cs b/OpenSim/Region/ClientStack/Linden/Caps/EstateChangeInfo.cs new file mode 100644 index 0000000..4e2b660 --- /dev/null +++ b/OpenSim/Region/ClientStack/Linden/Caps/EstateChangeInfo.cs | |||
@@ -0,0 +1,228 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSimulator Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System; | ||
29 | using System.Collections; | ||
30 | using System.Collections.Generic; | ||
31 | using System.Text; | ||
32 | using System.Reflection; | ||
33 | |||
34 | using log4net; | ||
35 | using Nini.Config; | ||
36 | using OpenMetaverse; | ||
37 | using OpenMetaverse.StructuredData; | ||
38 | using Mono.Addins; | ||
39 | |||
40 | using OpenSim.Framework; | ||
41 | using OpenSim.Framework.Servers.HttpServer; | ||
42 | using OpenSim.Region.Framework.Interfaces; | ||
43 | using OpenSim.Region.Framework.Scenes; | ||
44 | using Caps=OpenSim.Framework.Capabilities.Caps; | ||
45 | |||
46 | namespace OpenSim.Region.ClientStack.Linden | ||
47 | { | ||
48 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "EstateChangeInfoCapModule")] | ||
49 | public class EstateChangeInfoCapModule : INonSharedRegionModule | ||
50 | { | ||
51 | private static readonly ILog m_log = | ||
52 | LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
53 | |||
54 | private Scene m_scene; | ||
55 | private bool m_Enabled = false; | ||
56 | private string m_capUrl; | ||
57 | IEstateModule m_EstateModule; | ||
58 | |||
59 | #region INonSharedRegionModule Members | ||
60 | |||
61 | public void Initialise(IConfigSource pSource) | ||
62 | { | ||
63 | IConfig config = pSource.Configs["ClientStack.LindenCaps"]; | ||
64 | if (config == null) | ||
65 | return; | ||
66 | |||
67 | m_capUrl = config.GetString("Cap_EstateChangeInfo", string.Empty); | ||
68 | if (!String.IsNullOrEmpty(m_capUrl) && m_capUrl.Equals("localhost")) | ||
69 | m_Enabled = true; | ||
70 | } | ||
71 | |||
72 | public void AddRegion(Scene scene) | ||
73 | { | ||
74 | if (!m_Enabled) | ||
75 | return; | ||
76 | |||
77 | m_scene = scene; | ||
78 | } | ||
79 | |||
80 | public void RemoveRegion(Scene scene) | ||
81 | { | ||
82 | if (!m_Enabled) | ||
83 | return; | ||
84 | |||
85 | if (m_scene == scene) | ||
86 | { | ||
87 | m_scene.EventManager.OnRegisterCaps -= RegisterCaps; | ||
88 | m_scene = null; | ||
89 | } | ||
90 | } | ||
91 | |||
92 | public void RegionLoaded(Scene scene) | ||
93 | { | ||
94 | if (!m_Enabled) | ||
95 | return; | ||
96 | |||
97 | if (scene.RegionInfo == null || scene.RegionInfo.EstateSettings == null) | ||
98 | { | ||
99 | m_Enabled = false; | ||
100 | return; | ||
101 | } | ||
102 | |||
103 | m_EstateModule = scene.RequestModuleInterface<IEstateModule>(); | ||
104 | if(m_EstateModule == null) | ||
105 | { | ||
106 | m_Enabled = false; | ||
107 | return; | ||
108 | } | ||
109 | |||
110 | scene.EventManager.OnRegisterCaps += RegisterCaps; | ||
111 | } | ||
112 | |||
113 | public void Close() | ||
114 | { | ||
115 | } | ||
116 | |||
117 | public string Name | ||
118 | { | ||
119 | get { return "EstateChangeInfoCapModule"; } | ||
120 | } | ||
121 | |||
122 | public Type ReplaceableInterface | ||
123 | { | ||
124 | get { return null; } | ||
125 | } | ||
126 | |||
127 | #endregion | ||
128 | |||
129 | public void RegisterCaps(UUID agentID, Caps caps) | ||
130 | { | ||
131 | string capUrl = "/CAPS/" + UUID.Random() + "/"; | ||
132 | |||
133 | caps.RegisterHandler( | ||
134 | "EstateChangeInfo", | ||
135 | new RestHTTPHandler( | ||
136 | "POST", | ||
137 | capUrl, | ||
138 | httpMethod => ProcessRequest(httpMethod, agentID, caps), | ||
139 | "EstateChangeInfo", | ||
140 | agentID.ToString())); ; | ||
141 | } | ||
142 | |||
143 | public Hashtable ProcessRequest(Hashtable request, UUID AgentId, Caps cap) | ||
144 | { | ||
145 | Hashtable responsedata = new Hashtable(); | ||
146 | |||
147 | ScenePresence avatar; | ||
148 | if (!m_scene.TryGetScenePresence(AgentId, out avatar) || !m_scene.Permissions.CanIssueEstateCommand(AgentId, false)) | ||
149 | { | ||
150 | responsedata["int_response_code"] = 401; | ||
151 | responsedata["str_response_string"] = LLSDxmlEncode.LLSDEmpty; | ||
152 | responsedata["keepalive"] = false; | ||
153 | return responsedata; | ||
154 | } | ||
155 | |||
156 | if (m_scene.RegionInfo == null | ||
157 | || m_scene.RegionInfo.EstateSettings == null) | ||
158 | { | ||
159 | responsedata["int_response_code"] = 501; | ||
160 | responsedata["str_response_string"] = LLSDxmlEncode.LLSDEmpty; | ||
161 | responsedata["keepalive"] = false; | ||
162 | return responsedata; | ||
163 | } | ||
164 | |||
165 | OSDMap r; | ||
166 | |||
167 | try | ||
168 | { | ||
169 | r = (OSDMap)OSDParser.Deserialize((string)request["requestbody"]); | ||
170 | } | ||
171 | catch (Exception ex) | ||
172 | { | ||
173 | m_log.Error("[UPLOAD OBJECT ASSET MODULE]: Error deserializing message " + ex.ToString()); | ||
174 | r = null; | ||
175 | } | ||
176 | |||
177 | if (r == null) | ||
178 | { | ||
179 | responsedata["int_response_code"] = 400; //501; //410; //404; | ||
180 | responsedata["content_type"] = "text/plain"; | ||
181 | responsedata["keepalive"] = false; | ||
182 | responsedata["str_response_string"] = LLSDxmlEncode.LLSDEmpty; | ||
183 | return responsedata; | ||
184 | } | ||
185 | |||
186 | bool ok = true; | ||
187 | try | ||
188 | { | ||
189 | string estateName = r["estate_name"].AsString(); | ||
190 | UUID invoice = r["invoice"].AsUUID(); | ||
191 | int sunHour = r["sun_hour"].AsInteger(); | ||
192 | bool sunFixed = r["is_sun_fixed"].AsBoolean(); | ||
193 | bool externallyVisible = r["is_externally_visible"].AsBoolean(); | ||
194 | bool allowDirectTeleport = r["allow_direct_teleport"].AsBoolean(); | ||
195 | bool denyAnonymous = r["deny_anonymous"].AsBoolean(); | ||
196 | bool denyAgeUnverified = r["deny_age_unverified"].AsBoolean(); | ||
197 | bool alloVoiceChat = r["allow_voice_chat"].AsBoolean(); | ||
198 | // taxfree is now AllowAccessOverride | ||
199 | bool overridePublicAccess = m_scene.RegionInfo.EstateSettings.TaxFree; | ||
200 | if (r.ContainsKey("override_public_access")) | ||
201 | overridePublicAccess = r["override_public_access"].AsBoolean(); | ||
202 | |||
203 | ok = m_EstateModule.handleEstateChangeInfoCap(estateName, invoice, sunHour, sunFixed, | ||
204 | externallyVisible, allowDirectTeleport, denyAnonymous, denyAgeUnverified, | ||
205 | alloVoiceChat, overridePublicAccess); | ||
206 | } | ||
207 | catch | ||
208 | { | ||
209 | ok = false; | ||
210 | } | ||
211 | |||
212 | if(ok) | ||
213 | { | ||
214 | responsedata["int_response_code"] = 200; | ||
215 | responsedata["content_type"] = "text/plain"; | ||
216 | responsedata["str_response_string"] = LLSDxmlEncode.LLSDEmpty; | ||
217 | } | ||
218 | else | ||
219 | { | ||
220 | responsedata["int_response_code"] = 400; //501; //410; //404; | ||
221 | responsedata["content_type"] = "text/plain"; | ||
222 | responsedata["keepalive"] = false; | ||
223 | responsedata["str_response_string"] = LLSDxmlEncode.LLSDEmpty; | ||
224 | } | ||
225 | return responsedata; | ||
226 | } | ||
227 | } | ||
228 | } | ||
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/ObjectCaps/ObjectAdd.cs b/OpenSim/Region/ClientStack/Linden/Caps/ObjectCaps/ObjectAdd.cs index adb49bd..a33607f 100644 --- a/OpenSim/Region/ClientStack/Linden/Caps/ObjectCaps/ObjectAdd.cs +++ b/OpenSim/Region/ClientStack/Linden/Caps/ObjectCaps/ObjectAdd.cs | |||
@@ -161,34 +161,34 @@ namespace OpenSim.Region.ClientStack.Linden | |||
161 | int lastattach = 0; | 161 | int lastattach = 0; |
162 | 162 | ||
163 | OSDMap rm = (OSDMap)r; | 163 | OSDMap rm = (OSDMap)r; |
164 | 164 | OSD tmpOSD; | |
165 | if (rm.ContainsKey("ObjectData")) //v2 | 165 | if (rm.TryGetValue("ObjectData", out tmpOSD)) //v2 |
166 | { | 166 | { |
167 | if (rm["ObjectData"].Type != OSDType.Map) | 167 | if (tmpOSD.Type != OSDType.Map) |
168 | { | 168 | { |
169 | responsedata["str_response_string"] = "Has ObjectData key, but data not in expected format"; | 169 | responsedata["str_response_string"] = "Has ObjectData key, but data not in expected format"; |
170 | return responsedata; | 170 | return responsedata; |
171 | } | 171 | } |
172 | 172 | ||
173 | OSDMap ObjMap = (OSDMap)rm["ObjectData"]; | 173 | OSDMap ObjMap = (OSDMap)tmpOSD; |
174 | 174 | ||
175 | bypass_raycast = ObjMap["BypassRaycast"].AsBoolean(); | 175 | bypass_raycast = ObjMap["BypassRaycast"].AsBoolean(); |
176 | everyone_mask = readuintval(ObjMap["EveryoneMask"]); | 176 | everyone_mask = ReadUIntVal(ObjMap["EveryoneMask"]); |
177 | flags = readuintval(ObjMap["Flags"]); | 177 | flags = ReadUIntVal(ObjMap["Flags"]); |
178 | group_mask = readuintval(ObjMap["GroupMask"]); | 178 | group_mask = ReadUIntVal(ObjMap["GroupMask"]); |
179 | material = ObjMap["Material"].AsInteger(); | 179 | material = ObjMap["Material"].AsInteger(); |
180 | next_owner_mask = readuintval(ObjMap["NextOwnerMask"]); | 180 | next_owner_mask = ReadUIntVal(ObjMap["NextOwnerMask"]); |
181 | p_code = ObjMap["PCode"].AsInteger(); | 181 | p_code = ObjMap["PCode"].AsInteger(); |
182 | 182 | ||
183 | if (ObjMap.ContainsKey("Path")) | 183 | if (ObjMap.TryGetValue("Path", out tmpOSD)) |
184 | { | 184 | { |
185 | if (ObjMap["Path"].Type != OSDType.Map) | 185 | if (tmpOSD.Type != OSDType.Map) |
186 | { | 186 | { |
187 | responsedata["str_response_string"] = "Has Path key, but data not in expected format"; | 187 | responsedata["str_response_string"] = "Has Path key, but data not in expected format"; |
188 | return responsedata; | 188 | return responsedata; |
189 | } | 189 | } |
190 | 190 | ||
191 | OSDMap PathMap = (OSDMap)ObjMap["Path"]; | 191 | OSDMap PathMap = (OSDMap)tmpOSD; |
192 | path_begin = PathMap["Begin"].AsInteger(); | 192 | path_begin = PathMap["Begin"].AsInteger(); |
193 | path_curve = PathMap["Curve"].AsInteger(); | 193 | path_curve = PathMap["Curve"].AsInteger(); |
194 | path_end = PathMap["End"].AsInteger(); | 194 | path_end = PathMap["End"].AsInteger(); |
@@ -203,18 +203,17 @@ namespace OpenSim.Region.ClientStack.Linden | |||
203 | path_taper_y = PathMap["TaperY"].AsInteger(); | 203 | path_taper_y = PathMap["TaperY"].AsInteger(); |
204 | path_twist = PathMap["Twist"].AsInteger(); | 204 | path_twist = PathMap["Twist"].AsInteger(); |
205 | path_twist_begin = PathMap["TwistBegin"].AsInteger(); | 205 | path_twist_begin = PathMap["TwistBegin"].AsInteger(); |
206 | |||
207 | } | 206 | } |
208 | 207 | ||
209 | if (ObjMap.ContainsKey("Profile")) | 208 | if (ObjMap.TryGetValue("Profile", out tmpOSD)) |
210 | { | 209 | { |
211 | if (ObjMap["Profile"].Type != OSDType.Map) | 210 | if (tmpOSD.Type != OSDType.Map) |
212 | { | 211 | { |
213 | responsedata["str_response_string"] = "Has Profile key, but data not in expected format"; | 212 | responsedata["str_response_string"] = "Has Profile key, but data not in expected format"; |
214 | return responsedata; | 213 | return responsedata; |
215 | } | 214 | } |
216 | 215 | ||
217 | OSDMap ProfileMap = (OSDMap)ObjMap["Profile"]; | 216 | OSDMap ProfileMap = (OSDMap)tmpOSD; |
218 | 217 | ||
219 | profile_begin = ProfileMap["Begin"].AsInteger(); | 218 | profile_begin = ProfileMap["Begin"].AsInteger(); |
220 | profile_curve = ProfileMap["Curve"].AsInteger(); | 219 | profile_curve = ProfileMap["Curve"].AsInteger(); |
@@ -239,15 +238,15 @@ namespace OpenSim.Region.ClientStack.Linden | |||
239 | return responsedata; | 238 | return responsedata; |
240 | } | 239 | } |
241 | 240 | ||
242 | if (rm.ContainsKey("AgentData")) | 241 | if (rm.TryGetValue("AgentData", out tmpOSD)) |
243 | { | 242 | { |
244 | if (rm["AgentData"].Type != OSDType.Map) | 243 | if (tmpOSD.Type != OSDType.Map) |
245 | { | 244 | { |
246 | responsedata["str_response_string"] = "Has AgentData key, but data not in expected format"; | 245 | responsedata["str_response_string"] = "Has AgentData key, but data not in expected format"; |
247 | return responsedata; | 246 | return responsedata; |
248 | } | 247 | } |
249 | 248 | ||
250 | OSDMap AgentDataMap = (OSDMap)rm["AgentData"]; | 249 | OSDMap AgentDataMap = (OSDMap)tmpOSD; |
251 | 250 | ||
252 | //session_id = AgentDataMap["SessionId"].AsUUID(); | 251 | //session_id = AgentDataMap["SessionId"].AsUUID(); |
253 | group_id = AgentDataMap["GroupId"].AsUUID(); | 252 | group_id = AgentDataMap["GroupId"].AsUUID(); |
@@ -258,13 +257,13 @@ namespace OpenSim.Region.ClientStack.Linden | |||
258 | { //v1 | 257 | { //v1 |
259 | bypass_raycast = rm["bypass_raycast"].AsBoolean(); | 258 | bypass_raycast = rm["bypass_raycast"].AsBoolean(); |
260 | 259 | ||
261 | everyone_mask = readuintval(rm["everyone_mask"]); | 260 | everyone_mask = ReadUIntVal(rm["everyone_mask"]); |
262 | flags = readuintval(rm["flags"]); | 261 | flags = ReadUIntVal(rm["flags"]); |
263 | group_id = rm["group_id"].AsUUID(); | 262 | group_id = rm["group_id"].AsUUID(); |
264 | group_mask = readuintval(rm["group_mask"]); | 263 | group_mask = ReadUIntVal(rm["group_mask"]); |
265 | hollow = rm["hollow"].AsInteger(); | 264 | hollow = rm["hollow"].AsInteger(); |
266 | material = rm["material"].AsInteger(); | 265 | material = rm["material"].AsInteger(); |
267 | next_owner_mask = readuintval(rm["next_owner_mask"]); | 266 | next_owner_mask = ReadUIntVal(rm["next_owner_mask"]); |
268 | hollow = rm["hollow"].AsInteger(); | 267 | hollow = rm["hollow"].AsInteger(); |
269 | p_code = rm["p_code"].AsInteger(); | 268 | p_code = rm["p_code"].AsInteger(); |
270 | path_begin = rm["path_begin"].AsInteger(); | 269 | path_begin = rm["path_begin"].AsInteger(); |
@@ -344,7 +343,6 @@ namespace OpenSim.Region.ClientStack.Linden | |||
344 | obj = m_scene.AddNewPrim(avatar.UUID, group_id, pos, rotation, pbs); | 343 | obj = m_scene.AddNewPrim(avatar.UUID, group_id, pos, rotation, pbs); |
345 | } | 344 | } |
346 | 345 | ||
347 | |||
348 | if (obj == null) | 346 | if (obj == null) |
349 | return responsedata; | 347 | return responsedata; |
350 | 348 | ||
@@ -369,7 +367,7 @@ namespace OpenSim.Region.ClientStack.Linden | |||
369 | return responsedata; | 367 | return responsedata; |
370 | } | 368 | } |
371 | 369 | ||
372 | private uint readuintval(OSD obj) | 370 | private uint ReadUIntVal(OSD obj) |
373 | { | 371 | { |
374 | byte[] tmp = obj.AsBinary(); | 372 | byte[] tmp = obj.AsBinary(); |
375 | if (BitConverter.IsLittleEndian) | 373 | if (BitConverter.IsLittleEndian) |
diff --git a/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs b/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs index 986a44f..c91933f 100644 --- a/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs +++ b/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs | |||
@@ -1593,6 +1593,44 @@ namespace OpenSim.Region.CoreModules.World.Estate | |||
1593 | sendDetailedEstateData(remoteClient, invoice); | 1593 | sendDetailedEstateData(remoteClient, invoice); |
1594 | } | 1594 | } |
1595 | 1595 | ||
1596 | public bool handleEstateChangeInfoCap(string estateName, UUID invoice, | ||
1597 | int sunHour, bool sunFixed, | ||
1598 | bool externallyVisible, | ||
1599 | bool allowDirectTeleport, | ||
1600 | bool denyAnonymous, bool denyAgeUnverified, | ||
1601 | bool alloVoiceChat, bool overridePublicAccess) | ||
1602 | { | ||
1603 | if (sunHour == 0) | ||
1604 | { | ||
1605 | Scene.RegionInfo.EstateSettings.UseGlobalTime = true; | ||
1606 | Scene.RegionInfo.EstateSettings.SunPosition = 0.0; | ||
1607 | } | ||
1608 | else | ||
1609 | { | ||
1610 | Scene.RegionInfo.EstateSettings.UseGlobalTime = false; | ||
1611 | Scene.RegionInfo.EstateSettings.SunPosition = (sunHour - 0x1800) / 1024.0; | ||
1612 | // Warning: FixedSun should be set to True, otherwise this sun position won't be used. | ||
1613 | } | ||
1614 | |||
1615 | Scene.RegionInfo.EstateSettings.PublicAccess = externallyVisible; | ||
1616 | Scene.RegionInfo.EstateSettings.FixedSun = sunFixed; | ||
1617 | Scene.RegionInfo.EstateSettings.AllowDirectTeleport = allowDirectTeleport; | ||
1618 | |||
1619 | Scene.RegionInfo.EstateSettings.DenyAnonymous = denyAnonymous; | ||
1620 | Scene.RegionInfo.EstateSettings.AllowVoice = alloVoiceChat; | ||
1621 | |||
1622 | // taxfree is now AllowAccessOverride | ||
1623 | Scene.RegionInfo.EstateSettings.TaxFree = overridePublicAccess; | ||
1624 | Scene.RegionInfo.EstateSettings.DenyMinors = denyAgeUnverified; | ||
1625 | |||
1626 | Scene.EstateDataService.StoreEstateSettings(Scene.RegionInfo.EstateSettings); | ||
1627 | TriggerEstateInfoChange(); | ||
1628 | |||
1629 | Scene.TriggerEstateSunUpdate(); | ||
1630 | |||
1631 | return true; | ||
1632 | } | ||
1633 | |||
1596 | #endregion | 1634 | #endregion |
1597 | 1635 | ||
1598 | #region Other Functions | 1636 | #region Other Functions |
diff --git a/OpenSim/Region/Framework/Interfaces/IEstateModule.cs b/OpenSim/Region/Framework/Interfaces/IEstateModule.cs index 6b8b999..0563c8f 100644 --- a/OpenSim/Region/Framework/Interfaces/IEstateModule.cs +++ b/OpenSim/Region/Framework/Interfaces/IEstateModule.cs | |||
@@ -68,5 +68,8 @@ namespace OpenSim.Region.Framework.Interfaces | |||
68 | /// Returns whether the transfer ID is being used for a terrain transfer. | 68 | /// Returns whether the transfer ID is being used for a terrain transfer. |
69 | /// </summary> | 69 | /// </summary> |
70 | bool IsTerrainXfer(ulong xferID); | 70 | bool IsTerrainXfer(ulong xferID); |
71 | bool handleEstateChangeInfoCap(string estateName, UUID invoice, int sunHour, bool sunFixed, | ||
72 | bool externallyVisible, bool allowDirectTeleport, bool denyAnonymous, bool denyAgeUnverified, | ||
73 | bool alloVoiceChat, bool overridePublicAccess); | ||
71 | } | 74 | } |
72 | } | 75 | } |