aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces
diff options
context:
space:
mode:
authorMelanie Thielker2010-04-16 05:20:25 +0200
committerMelanie Thielker2010-04-16 05:20:25 +0200
commitccc56e6dd4b2d14571e9ee178e9591c5fce79d18 (patch)
treed4bcd69e4a955e65d996058d756cc2cf72287522 /OpenSim/Region/Framework/Interfaces
parentMerge branch 'careminster' into careminster-presence-refactor (diff)
parentCommitting sacha's partial work (from orpheus). The GridBrat needs to learn (diff)
downloadopensim-SC_OLD-ccc56e6dd4b2d14571e9ee178e9591c5fce79d18.zip
opensim-SC_OLD-ccc56e6dd4b2d14571e9ee178e9591c5fce79d18.tar.gz
opensim-SC_OLD-ccc56e6dd4b2d14571e9ee178e9591c5fce79d18.tar.bz2
opensim-SC_OLD-ccc56e6dd4b2d14571e9ee178e9591c5fce79d18.tar.xz
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r--OpenSim/Region/Framework/Interfaces/ISnmpModule.cs12
1 files changed, 9 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/ISnmpModule.cs b/OpenSim/Region/Framework/Interfaces/ISnmpModule.cs
index 6fd6ba7..8a83fe9 100644
--- a/OpenSim/Region/Framework/Interfaces/ISnmpModule.cs
+++ b/OpenSim/Region/Framework/Interfaces/ISnmpModule.cs
@@ -4,9 +4,15 @@
4// 4//
5// This file is not open source. All rights reserved 5// This file is not open source. All rights reserved
6// Mod 2 6// Mod 2
7
8using OpenSim.Region.Framework.Scenes;
9
7public interface ISnmpModule 10public interface ISnmpModule
8{ 11{
9 void Alert(string message); 12 void Trap(int code, string Message, Scene scene);
10 void Trap(int code,string simname,string Message); 13 void Critical(string Message, Scene scene);
11 void ColdStart(int step , string simname); 14 void Warning(string Message, Scene scene);
15 void Major(string Message, Scene scene);
16 void ColdStart(int step , Scene scene);
17 void Shutdown(int step , Scene scene);
12} 18}