diff options
author | mingchen | 2008-07-25 02:30:07 +0000 |
---|---|---|
committer | mingchen | 2008-07-25 02:30:07 +0000 |
commit | f2742fb6043c6b7332afd026d77a29b25369934c (patch) | |
tree | 895f906ba9db30b27117e6f0d7af40e063204e8e /OpenSim/Region/Environment/Interfaces/ICommander.cs | |
parent | llApplyImpulse now accepts any non-zero integer as not FALSE (diff) | |
download | opensim-SC_OLD-f2742fb6043c6b7332afd026d77a29b25369934c.zip opensim-SC_OLD-f2742fb6043c6b7332afd026d77a29b25369934c.tar.gz opensim-SC_OLD-f2742fb6043c6b7332afd026d77a29b25369934c.tar.bz2 opensim-SC_OLD-f2742fb6043c6b7332afd026d77a29b25369934c.tar.xz |
*Added CommandIntentions that is used to describe a console commands hazard. HAZARDOUS if it modifies the simulator, NON_HAZARDOUS if it does a command that doesn't modify the simulator but does a background command such as a forced backup, and STATISTICAL if it returns debug or more information.
*This is useful for implementing a protection system from unwanted script execution or for application modules needing to know what a command does.
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces/ICommander.cs')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/ICommander.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/ICommander.cs b/OpenSim/Region/Environment/Interfaces/ICommander.cs index c4102af..f2260c3 100644 --- a/OpenSim/Region/Environment/Interfaces/ICommander.cs +++ b/OpenSim/Region/Environment/Interfaces/ICommander.cs | |||
@@ -27,6 +27,8 @@ | |||
27 | 27 | ||
28 | namespace OpenSim.Region.Environment.Interfaces | 28 | namespace OpenSim.Region.Environment.Interfaces |
29 | { | 29 | { |
30 | |||
31 | |||
30 | public interface ICommander | 32 | public interface ICommander |
31 | { | 33 | { |
32 | void ProcessConsoleCommand(string function, string[] args); | 34 | void ProcessConsoleCommand(string function, string[] args); |