aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
diff options
context:
space:
mode:
authorSean Dague2009-02-26 22:37:02 +0000
committerSean Dague2009-02-26 22:37:02 +0000
commit7f727bd33eef49b90c751d21ba8c69ef375f2cf7 (patch)
tree395462233a8c90c77f177570031ec60a4775351a /OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
parentAnother change to how the CreateCommsManagerPlugin checks if it should be cre... (diff)
downloadopensim-SC_OLD-7f727bd33eef49b90c751d21ba8c69ef375f2cf7.zip
opensim-SC_OLD-7f727bd33eef49b90c751d21ba8c69ef375f2cf7.tar.gz
opensim-SC_OLD-7f727bd33eef49b90c751d21ba8c69ef375f2cf7.tar.bz2
opensim-SC_OLD-7f727bd33eef49b90c751d21ba8c69ef375f2cf7.tar.xz
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.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
index 6ba8b20..d8b9f1f 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
@@ -143,6 +143,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
143 m_OSSL_Functions.osTeleportAgent(agent, position, lookat); 143 m_OSSL_Functions.osTeleportAgent(agent, position, lookat);
144 } 144 }
145 145
146 // Avatar info functions
147 public string osGetAgentIP(string agent)
148 {
149 return m_OSSL_Functions.osGetAgentIP(agent);
150 }
151
146 // Animation Functions 152 // Animation Functions
147 153
148 public void osAvatarPlayAnimation(string avatar, string animation) 154 public void osAvatarPlayAnimation(string avatar, string animation)