aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/ISnmpModule.cs
blob: 16a243c2b142fe0d42a4410a0b6dab75cc2063c7 (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
///////////////////////////////////////////////////////////////////
//
// (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);
}