aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
diff options
context:
space:
mode:
authorMelanie2012-01-06 17:37:22 +0000
committerMelanie2012-01-06 17:37:22 +0000
commitfbb2a7e90d28bb6a522b4e203e53e1c81cbf25e5 (patch)
tree7304903f1294eaf8f7bf6e6c8a9cf10bb5431cb8 /OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-fbb2a7e90d28bb6a522b4e203e53e1c81cbf25e5.zip
opensim-SC_OLD-fbb2a7e90d28bb6a522b4e203e53e1c81cbf25e5.tar.gz
opensim-SC_OLD-fbb2a7e90d28bb6a522b4e203e53e1c81cbf25e5.tar.bz2
opensim-SC_OLD-fbb2a7e90d28bb6a522b4e203e53e1c81cbf25e5.tar.xz
Add ThreatLevel.NoAccess to OSSL. This allows to enable OSSL without enabling
any methods, even those without threat, automatically. It is for use with setups wanting to allow only specific methods to specific users.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
index 00ca070..f5ee733 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
@@ -42,6 +42,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
42{ 42{
43 public enum ThreatLevel 43 public enum ThreatLevel
44 { 44 {
45 NoAccess = -1,
45 None = 0, 46 None = 0,
46 Nuisance = 1, 47 Nuisance = 1,
47 VeryLow = 2, 48 VeryLow = 2,