aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/ISnmpModule.cs
blob: e01f6492e5aabffaa269f7790fe45b36e7f6a7b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
///////////////////////////////////////////////////////////////////
//
// (c) Careminster LImited, Melanie Thielker and the Meta7 Team
//
// This file is not open source. All rights reserved
// Mod 2

using OpenSim.Region.Framework.Scenes;

public interface ISnmpModule
{
    void Trap(int code, string Message, Scene scene);
    void Critical(string Message, Scene scene);
    void Warning(string Message, Scene scene);
    void Major(string Message, Scene scene);
    void ColdStart(int step , Scene scene);
    void Shutdown(int step , Scene scene);
	//
	// Node Start/stop events
	//
    void LinkUp(Scene scene);
    void LinkDown(Scene scene);
    void BootInfo(string data, Scene scene);
    void trapDebug(string Module,string data, Scene scene);
    void trapXMRE(int data, string Message, Scene scene);

}