mirror of
https://github.com/opensim/opensim.git
synced 2026-07-31 05:45:37 +08:00
Add interface, stubbed implementation and
script stub for llRequestSecureURL().
This commit is contained in:
@@ -7953,6 +7953,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
// wComm.DeliverMessage(ChatTypeEnum.Owner, 0, m_host.Name, m_host.UUID, msg);
|
||||
}
|
||||
|
||||
public LSL_String llRequestSecureURL();
|
||||
{
|
||||
m_host.AddScriptLPS(1);
|
||||
NotImplemented("llRequestSecureURL");
|
||||
return UUID.Zero.ToString();
|
||||
}
|
||||
|
||||
public LSL_String llRequestSimulatorData(string simulator, int data)
|
||||
{
|
||||
IOSSL_Api ossl = (IOSSL_Api)m_ScriptEngine.GetApi(m_itemID, "OSSL");
|
||||
@@ -8029,7 +8036,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
public LSL_String llRequestURL()
|
||||
{
|
||||
m_host.AddScriptLPS(1);
|
||||
NotImplemented("llRequestURLe");
|
||||
NotImplemented("llRequestURL");
|
||||
return UUID.Zero.ToString();
|
||||
}
|
||||
|
||||
|
||||
@@ -273,6 +273,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
|
||||
LSL_Key llRequestAgentData(string id, int data);
|
||||
LSL_Key llRequestInventoryData(string name);
|
||||
void llRequestPermissions(string agent, int perm);
|
||||
LSL_String llRequestSecureURL();
|
||||
LSL_Key llRequestSimulatorData(string simulator, int data);
|
||||
LSL_Key llRequestURL();
|
||||
void llResetLandBanList();
|
||||
|
||||
@@ -1224,6 +1224,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
m_LSL_Functions.llRequestPermissions(agent, perm);
|
||||
}
|
||||
|
||||
public LSL_String llRequestSecureURL()
|
||||
{
|
||||
return m_LSL_Functions.llRequestSecureURL();
|
||||
}
|
||||
|
||||
public LSL_Key llRequestSimulatorData(string simulator, int data)
|
||||
{
|
||||
return m_LSL_Functions.llRequestSimulatorData(simulator, data);
|
||||
|
||||
Reference in New Issue
Block a user