Add interface, stubbed implementation and
script stub for llRequestSecureURL().0.6.5-rc1
parent
e206a9ce88
commit
c23bd2d6ea
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue