aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs50
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs14
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs14
3 files changed, 39 insertions, 39 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index b9f8b28..0124e32 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -1404,7 +1404,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
1404 return detectedParams.Name; 1404 return detectedParams.Name;
1405 } 1405 }
1406 1406
1407 public LSL_String llDetectedKey(int number) 1407 public LSL_Key llDetectedKey(int number)
1408 { 1408 {
1409 m_host.AddScriptLPS(1); 1409 m_host.AddScriptLPS(1);
1410 DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, number); 1410 DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, number);
@@ -1413,7 +1413,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
1413 return detectedParams.Key.ToString(); 1413 return detectedParams.Key.ToString();
1414 } 1414 }
1415 1415
1416 public LSL_String llDetectedOwner(int number) 1416 public LSL_Key llDetectedOwner(int number)
1417 { 1417 {
1418 m_host.AddScriptLPS(1); 1418 m_host.AddScriptLPS(1);
1419 DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, number); 1419 DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, number);
@@ -3878,7 +3878,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
3878 Deprecated("llReleaseCamera", "Use llClearCameraParams instead"); 3878 Deprecated("llReleaseCamera", "Use llClearCameraParams instead");
3879 } 3879 }
3880 3880
3881 public LSL_String llGetOwner() 3881 public LSL_Key llGetOwner()
3882 { 3882 {
3883 m_host.AddScriptLPS(1); 3883 m_host.AddScriptLPS(1);
3884 3884
@@ -4010,7 +4010,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
4010 4010
4011 } 4011 }
4012 4012
4013 public LSL_String llGetKey() 4013 public LSL_Key llGetKey()
4014 { 4014 {
4015 m_host.AddScriptLPS(1); 4015 m_host.AddScriptLPS(1);
4016 return m_host.UUID.ToString(); 4016 return m_host.UUID.ToString();
@@ -4336,7 +4336,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
4336 new DetectParams[0])); 4336 new DetectParams[0]));
4337 } 4337 }
4338 4338
4339 public LSL_String llGetPermissionsKey() 4339 public LSL_Key llGetPermissionsKey()
4340 { 4340 {
4341 m_host.AddScriptLPS(1); 4341 m_host.AddScriptLPS(1);
4342 4342
@@ -4587,7 +4587,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
4587 parentPrim.ScheduleGroupForFullUpdate(); 4587 parentPrim.ScheduleGroupForFullUpdate();
4588 } 4588 }
4589 4589
4590 public LSL_String llGetLinkKey(int linknum) 4590 public LSL_Key llGetLinkKey(int linknum)
4591 { 4591 {
4592 m_host.AddScriptLPS(1); 4592 m_host.AddScriptLPS(1);
4593 SceneObjectPart part = m_host.ParentGroup.GetLinkNumPart(linknum); 4593 SceneObjectPart part = m_host.ParentGroup.GetLinkNumPart(linknum);
@@ -4849,7 +4849,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
4849 m_host.PassTouches = false; 4849 m_host.PassTouches = false;
4850 } 4850 }
4851 4851
4852 public LSL_String llRequestAgentData(string id, int data) 4852 public LSL_Key llRequestAgentData(string id, int data)
4853 { 4853 {
4854 m_host.AddScriptLPS(1); 4854 m_host.AddScriptLPS(1);
4855 4855
@@ -4967,7 +4967,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
4967 return ""; 4967 return "";
4968 } 4968 }
4969 4969
4970 public LSL_String llRequestInventoryData(string name) 4970 public LSL_Key llRequestInventoryData(string name)
4971 { 4971 {
4972 m_host.AddScriptLPS(1); 4972 m_host.AddScriptLPS(1);
4973 4973
@@ -5595,7 +5595,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
5595 return Math.Acos(2 * quotient - 1); 5595 return Math.Acos(2 * quotient - 1);
5596 } 5596 }
5597 5597
5598 public LSL_String llGetInventoryKey(string name) 5598 public LSL_Key llGetInventoryKey(string name)
5599 { 5599 {
5600 m_host.AddScriptLPS(1); 5600 m_host.AddScriptLPS(1);
5601 5601
@@ -5715,7 +5715,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
5715 return source.IndexOf(pattern); 5715 return source.IndexOf(pattern);
5716 } 5716 }
5717 5717
5718 public LSL_String llGetOwnerKey(string id) 5718 public LSL_Key llGetOwnerKey(string id)
5719 { 5719 {
5720 m_host.AddScriptLPS(1); 5720 m_host.AddScriptLPS(1);
5721 UUID key = new UUID(); 5721 UUID key = new UUID();
@@ -6891,7 +6891,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
6891 return 0; 6891 return 0;
6892 } 6892 }
6893 6893
6894 public LSL_String llGetLandOwnerAt(LSL_Vector pos) 6894 public LSL_Key llGetLandOwnerAt(LSL_Vector pos)
6895 { 6895 {
6896 m_host.AddScriptLPS(1); 6896 m_host.AddScriptLPS(1);
6897 ILandObject land = World.LandChannel.GetLandObject((float)pos.x, (float)pos.y); 6897 ILandObject land = World.LandChannel.GetLandObject((float)pos.x, (float)pos.y);
@@ -7841,14 +7841,14 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
7841 } 7841 }
7842 } 7842 }
7843 7843
7844 public LSL_String llAvatarOnSitTarget() 7844 public LSL_Key llAvatarOnSitTarget()
7845 { 7845 {
7846 m_host.AddScriptLPS(1); 7846 m_host.AddScriptLPS(1);
7847 return m_host.SitTargetAvatar.ToString(); 7847 return m_host.SitTargetAvatar.ToString();
7848 } 7848 }
7849 7849
7850 // http://wiki.secondlife.com/wiki/LlAvatarOnLinkSitTarget 7850 // http://wiki.secondlife.com/wiki/LlAvatarOnLinkSitTarget
7851 public LSL_String llAvatarOnLinkSitTarget(int linknum) 7851 public LSL_Key llAvatarOnLinkSitTarget(int linknum)
7852 { 7852 {
7853 m_host.AddScriptLPS(1); 7853 m_host.AddScriptLPS(1);
7854 if(linknum == ScriptBaseClass.LINK_SET || 7854 if(linknum == ScriptBaseClass.LINK_SET ||
@@ -8153,7 +8153,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
8153 ScriptSleep(m_sleepMsOnOpenRemoteDataChannel); 8153 ScriptSleep(m_sleepMsOnOpenRemoteDataChannel);
8154 } 8154 }
8155 8155
8156 public LSL_String llSendRemoteData(string channel, string dest, int idata, string sdata) 8156 public LSL_Key llSendRemoteData(string channel, string dest, int idata, string sdata)
8157 { 8157 {
8158 m_host.AddScriptLPS(1); 8158 m_host.AddScriptLPS(1);
8159 IXMLRPC xmlrpcMod = m_ScriptEngine.World.RequestModuleInterface<IXMLRPC>(); 8159 IXMLRPC xmlrpcMod = m_ScriptEngine.World.RequestModuleInterface<IXMLRPC>();
@@ -10598,7 +10598,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
10598 m_host.Description = desc!=null?desc:String.Empty; 10598 m_host.Description = desc!=null?desc:String.Empty;
10599 } 10599 }
10600 10600
10601 public LSL_String llGetCreator() 10601 public LSL_Key llGetCreator()
10602 { 10602 {
10603 m_host.AddScriptLPS(1); 10603 m_host.AddScriptLPS(1);
10604 return m_host.CreatorID.ToString(); 10604 return m_host.CreatorID.ToString();
@@ -12329,7 +12329,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
12329 } 12329 }
12330 } 12330 }
12331 12331
12332 public LSL_String llGetInventoryCreator(string itemName) 12332 public LSL_Key llGetInventoryCreator(string itemName)
12333 { 12333 {
12334 m_host.AddScriptLPS(1); 12334 m_host.AddScriptLPS(1);
12335 12335
@@ -12355,7 +12355,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
12355// wComm.DeliverMessage(ChatTypeEnum.Owner, 0, m_host.Name, m_host.UUID, msg); 12355// wComm.DeliverMessage(ChatTypeEnum.Owner, 0, m_host.Name, m_host.UUID, msg);
12356 } 12356 }
12357 12357
12358 public LSL_String llRequestSecureURL() 12358 public LSL_Key llRequestSecureURL()
12359 { 12359 {
12360 m_host.AddScriptLPS(1); 12360 m_host.AddScriptLPS(1);
12361 if (m_UrlModule != null) 12361 if (m_UrlModule != null)
@@ -12363,7 +12363,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
12363 return UUID.Zero.ToString(); 12363 return UUID.Zero.ToString();
12364 } 12364 }
12365 12365
12366 public LSL_String llRequestSimulatorData(string simulator, int data) 12366 public LSL_Key llRequestSimulatorData(string simulator, int data)
12367 { 12367 {
12368 IOSSL_Api ossl = (IOSSL_Api)m_ScriptEngine.GetApi(m_item.ItemID, "OSSL"); 12368 IOSSL_Api ossl = (IOSSL_Api)m_ScriptEngine.GetApi(m_item.ItemID, "OSSL");
12369 12369
@@ -12472,7 +12472,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
12472 } 12472 }
12473 } 12473 }
12474 12474
12475 public LSL_String llRequestURL() 12475 public LSL_Key llRequestURL()
12476 { 12476 {
12477 m_host.AddScriptLPS(1); 12477 m_host.AddScriptLPS(1);
12478 12478
@@ -13418,7 +13418,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
13418 return Convert.ToBase64String(data1); 13418 return Convert.ToBase64String(data1);
13419 } 13419 }
13420 13420
13421 public LSL_String llHTTPRequest(string url, LSL_List parameters, string body) 13421 public LSL_Key llHTTPRequest(string url, LSL_List parameters, string body)
13422 { 13422 {
13423 // Partial implementation: support for parameter flags needed 13423 // Partial implementation: support for parameter flags needed
13424 // see http://wiki.secondlife.com/wiki/LlHTTPRequest 13424 // see http://wiki.secondlife.com/wiki/LlHTTPRequest
@@ -14274,7 +14274,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
14274 }); 14274 });
14275 } 14275 }
14276 14276
14277 public LSL_String llGetNumberOfNotecardLines(string name) 14277 public LSL_Key llGetNumberOfNotecardLines(string name)
14278 { 14278 {
14279 m_host.AddScriptLPS(1); 14279 m_host.AddScriptLPS(1);
14280 14280
@@ -14325,7 +14325,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
14325 return tid.ToString(); 14325 return tid.ToString();
14326 } 14326 }
14327 14327
14328 public LSL_String llGetNotecardLine(string name, int line) 14328 public LSL_Key llGetNotecardLine(string name, int line)
14329 { 14329 {
14330 m_host.AddScriptLPS(1); 14330 m_host.AddScriptLPS(1);
14331 14331
@@ -14452,7 +14452,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
14452 return Name2Username(llKey2Name(id)); 14452 return Name2Username(llKey2Name(id));
14453 } 14453 }
14454 14454
14455 public LSL_String llRequestUsername(string id) 14455 public LSL_Key llRequestUsername(string id)
14456 { 14456 {
14457 UUID rq = UUID.Random(); 14457 UUID rq = UUID.Random();
14458 14458
@@ -14468,7 +14468,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
14468 return llKey2Name(id); 14468 return llKey2Name(id);
14469 } 14469 }
14470 14470
14471 public LSL_String llRequestDisplayName(string id) 14471 public LSL_Key llRequestDisplayName(string id)
14472 { 14472 {
14473 UUID rq = UUID.Random(); 14473 UUID rq = UUID.Random();
14474 14474
@@ -16050,7 +16050,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
16050 new DetectParams[0])); 16050 new DetectParams[0]));
16051 } 16051 }
16052 16052
16053 public LSL_String llTransferLindenDollars(string destination, int amount) 16053 public LSL_Key llTransferLindenDollars(string destination, int amount)
16054 { 16054 {
16055 UUID txn = UUID.Random(); 16055 UUID txn = UUID.Random();
16056 16056
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs
index 17c977f..4529d9a 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/ILSL_Api.cs
@@ -122,7 +122,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
122 LSL_Rotation llGetCameraRot(); 122 LSL_Rotation llGetCameraRot();
123 LSL_Vector llGetCenterOfMass(); 123 LSL_Vector llGetCenterOfMass();
124 LSL_Vector llGetColor(int face); 124 LSL_Vector llGetColor(int face);
125 LSL_String llGetCreator(); 125 LSL_Key llGetCreator();
126 LSL_String llGetDate(); 126 LSL_String llGetDate();
127 LSL_Float llGetEnergy(); 127 LSL_Float llGetEnergy();
128 LSL_String llGetEnv(LSL_String name); 128 LSL_String llGetEnv(LSL_String name);
@@ -155,7 +155,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
155 LSL_Float llGetMassMKS(); 155 LSL_Float llGetMassMKS();
156 LSL_Integer llGetMemoryLimit(); 156 LSL_Integer llGetMemoryLimit();
157 void llGetNextEmail(string address, string subject); 157 void llGetNextEmail(string address, string subject);
158 LSL_String llGetNotecardLine(string name, int line); 158 LSL_Key llGetNotecardLine(string name, int line);
159 LSL_Key llGetNumberOfNotecardLines(string name); 159 LSL_Key llGetNumberOfNotecardLines(string name);
160 LSL_Integer llGetNumberOfPrims(); 160 LSL_Integer llGetNumberOfPrims();
161 LSL_Integer llGetNumberOfSides(); 161 LSL_Integer llGetNumberOfSides();
@@ -211,23 +211,23 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
211 void llGiveInventory(string destination, string inventory); 211 void llGiveInventory(string destination, string inventory);
212 void llGiveInventoryList(string destination, string category, LSL_List inventory); 212 void llGiveInventoryList(string destination, string category, LSL_List inventory);
213 LSL_Integer llGiveMoney(string destination, int amount); 213 LSL_Integer llGiveMoney(string destination, int amount);
214 LSL_String llTransferLindenDollars(string destination, int amount); 214 LSL_Key llTransferLindenDollars(string destination, int amount);
215 void llGodLikeRezObject(string inventory, LSL_Vector pos); 215 void llGodLikeRezObject(string inventory, LSL_Vector pos);
216 LSL_Float llGround(LSL_Vector offset); 216 LSL_Float llGround(LSL_Vector offset);
217 LSL_Vector llGroundContour(LSL_Vector offset); 217 LSL_Vector llGroundContour(LSL_Vector offset);
218 LSL_Vector llGroundNormal(LSL_Vector offset); 218 LSL_Vector llGroundNormal(LSL_Vector offset);
219 void llGroundRepel(double height, int water, double tau); 219 void llGroundRepel(double height, int water, double tau);
220 LSL_Vector llGroundSlope(LSL_Vector offset); 220 LSL_Vector llGroundSlope(LSL_Vector offset);
221 LSL_String llHTTPRequest(string url, LSL_List parameters, string body); 221 LSL_Key llHTTPRequest(string url, LSL_List parameters, string body);
222 void llHTTPResponse(LSL_Key id, int status, string body); 222 void llHTTPResponse(LSL_Key id, int status, string body);
223 LSL_String llInsertString(string dst, int position, string src); 223 LSL_String llInsertString(string dst, int position, string src);
224 void llInstantMessage(string user, string message); 224 void llInstantMessage(string user, string message);
225 LSL_String llIntegerToBase64(int number); 225 LSL_String llIntegerToBase64(int number);
226 LSL_String llKey2Name(string id); 226 LSL_String llKey2Name(string id);
227 LSL_String llGetUsername(string id); 227 LSL_String llGetUsername(string id);
228 LSL_String llRequestUsername(string id); 228 LSL_Key llRequestUsername(string id);
229 LSL_String llGetDisplayName(string id); 229 LSL_String llGetDisplayName(string id);
230 LSL_String llRequestDisplayName(string id); 230 LSL_Key llRequestDisplayName(string id);
231 void llLinkParticleSystem(int linknum, LSL_List rules); 231 void llLinkParticleSystem(int linknum, LSL_List rules);
232 void llLinkSitTarget(LSL_Integer link, LSL_Vector offset, LSL_Rotation rot); 232 void llLinkSitTarget(LSL_Integer link, LSL_Vector offset, LSL_Rotation rot);
233 LSL_String llList2CSV(LSL_List src); 233 LSL_String llList2CSV(LSL_List src);
@@ -302,7 +302,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
302 LSL_Key llRequestAgentData(string id, int data); 302 LSL_Key llRequestAgentData(string id, int data);
303 LSL_Key llRequestInventoryData(string name); 303 LSL_Key llRequestInventoryData(string name);
304 void llRequestPermissions(string agent, int perm); 304 void llRequestPermissions(string agent, int perm);
305 LSL_String llRequestSecureURL(); 305 LSL_Key llRequestSecureURL();
306 LSL_Key llRequestSimulatorData(string simulator, int data); 306 LSL_Key llRequestSimulatorData(string simulator, int data);
307 LSL_Key llRequestURL(); 307 LSL_Key llRequestURL();
308 void llResetLandBanList(); 308 void llResetLandBanList();
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
index c39248b..0b474f4 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Stub.cs
@@ -456,7 +456,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
456 return m_LSL_Functions.llGetColor(face); 456 return m_LSL_Functions.llGetColor(face);
457 } 457 }
458 458
459 public LSL_String llGetCreator() 459 public LSL_Key llGetCreator()
460 { 460 {
461 return m_LSL_Functions.llGetCreator(); 461 return m_LSL_Functions.llGetCreator();
462 } 462 }
@@ -611,7 +611,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
611 m_LSL_Functions.llGetNextEmail(address, subject); 611 m_LSL_Functions.llGetNextEmail(address, subject);
612 } 612 }
613 613
614 public LSL_String llGetNotecardLine(string name, int line) 614 public LSL_Key llGetNotecardLine(string name, int line)
615 { 615 {
616 return m_LSL_Functions.llGetNotecardLine(name, line); 616 return m_LSL_Functions.llGetNotecardLine(name, line);
617 } 617 }
@@ -891,7 +891,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
891 return m_LSL_Functions.llGiveMoney(destination, amount); 891 return m_LSL_Functions.llGiveMoney(destination, amount);
892 } 892 }
893 893
894 public LSL_String llTransferLindenDollars(string destination, int amount) 894 public LSL_Key llTransferLindenDollars(string destination, int amount)
895 { 895 {
896 return m_LSL_Functions.llTransferLindenDollars(destination, amount); 896 return m_LSL_Functions.llTransferLindenDollars(destination, amount);
897 } 897 }
@@ -926,7 +926,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
926 return m_LSL_Functions.llGroundSlope(offset); 926 return m_LSL_Functions.llGroundSlope(offset);
927 } 927 }
928 928
929 public LSL_String llHTTPRequest(string url, LSL_List parameters, string body) 929 public LSL_Key llHTTPRequest(string url, LSL_List parameters, string body)
930 { 930 {
931 return m_LSL_Functions.llHTTPRequest(url, parameters, body); 931 return m_LSL_Functions.llHTTPRequest(url, parameters, body);
932 } 932 }
@@ -961,7 +961,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
961 return m_LSL_Functions.llGetUsername(id); 961 return m_LSL_Functions.llGetUsername(id);
962 } 962 }
963 963
964 public LSL_String llRequestUsername(string id) 964 public LSL_Key llRequestUsername(string id)
965 { 965 {
966 return m_LSL_Functions.llRequestUsername(id); 966 return m_LSL_Functions.llRequestUsername(id);
967 } 967 }
@@ -971,7 +971,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
971 return m_LSL_Functions.llGetDisplayName(id); 971 return m_LSL_Functions.llGetDisplayName(id);
972 } 972 }
973 973
974 public LSL_String llRequestDisplayName(string id) 974 public LSL_Key llRequestDisplayName(string id)
975 { 975 {
976 return m_LSL_Functions.llRequestDisplayName(id); 976 return m_LSL_Functions.llRequestDisplayName(id);
977 } 977 }
@@ -1346,7 +1346,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
1346 m_LSL_Functions.llRequestPermissions(agent, perm); 1346 m_LSL_Functions.llRequestPermissions(agent, perm);
1347 } 1347 }
1348 1348
1349 public LSL_String llRequestSecureURL() 1349 public LSL_Key llRequestSecureURL()
1350 { 1350 {
1351 return m_LSL_Functions.llRequestSecureURL(); 1351 return m_LSL_Functions.llRequestSecureURL();
1352 } 1352 }