This adds a new osGetAgentIP function with threat level set to High. It

isn't tested, but it doesn't break anything else.  The reason for this
function is to let in world tools be used to coordiante out of world
network services that need access to client ip addresses.
This commit is contained in:
Sean Dague
2009-02-26 22:37:02 +00:00
parent faca2a7ddc
commit 7f727bd33e
4 changed files with 39 additions and 0 deletions

View File

@@ -143,6 +143,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
m_OSSL_Functions.osTeleportAgent(agent, position, lookat);
}
// Avatar info functions
public string osGetAgentIP(string agent)
{
return m_OSSL_Functions.osGetAgentIP(agent);
}
// Animation Functions
public void osAvatarPlayAnimation(string avatar, string animation)