blob: 130f7bdfffe38fb6d82e9011d2ee6d029a1569b0 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
/* -*-C++-*- */
// $Id$
#ifndef ENTTRAPS_
#define ENTTRAPS_
// ============================================================================
//
// = LIBRARY
// asnmp
//
// = FILENAME
// enttraps.cpp
//
// = DESCRIPTION
// constants for Enterprise Traps
//
// = AUTHOR
// Peter E Mellquist
// Michael R MacFaden mrm@cisco.com - rework & ACE port
// ============================================================================
/*===================================================================
Copyright (c) 1996
Hewlett-Packard Company
ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
Permission to use, copy, modify, distribute and/or sell this software
and/or its documentation is hereby granted without fee. User agrees
to display the above copyright notice and this license notice in all
copies of the software and any documentation of the software. User
agrees to assume all liability for the use of the software; Hewlett-Packard
makes no representations about the suitability of this software for any
purpose. It is provided "AS-IS without warranty of any kind,either express
or implied. User hereby grants a royalty-free license to any and all
derivatives based upon this software code base.
=====================================================================*/
#include "asnmp/asn1.h" // ASN.1 header file
//--------------[ well known trap ids ]-----------------------------------
class ACE_Export snmpTrapsOid: public Oid
// = TITLE
// Defines the member functions for the snmpTrapsOid base class
// to implement the traps defined in RFC 1215
{
public:
snmpTrapsOid (void):Oid("1.3.6.1.6.3.1.1.5"){}
};
class ACE_Export snmpTrapEnterpriseOid: public Oid
// = TITLE
// Defines the default Enterprise Oid for this software package
{
public:
snmpTrapEnterpriseOid(void): Oid("1.3.6.1.6.3.1.1.4.3.0") { }
};
class ACE_Export coldStartOid: public snmpTrapsOid
// = TITLE
// Defines the RFC 1215 agent cold start generic trap (system reboot)
{
public:
coldStartOid( void){*this+=".1";}
};
class ACE_Export warmStartOid: public snmpTrapsOid
// = TITLE
// Defines the RFC 1215 agent warm start generic trap (agent reboot)
{
public:
warmStartOid( void){*this+=".2";}
};
class ACE_Export linkDownOid: public snmpTrapsOid
// = TITLE
// Defines the RFC 1215 interface (link) down trap
{
public:
linkDownOid( void){*this+=".3";}
};
// SMI LinkUp Oid
class ACE_Export linkUpOid: public snmpTrapsOid
// = TITLE
// Defines the RFC 1215 interface (link) up trap
{
public:
linkUpOid( void){*this+=".4";}
};
class ACE_Export authenticationFailureOid: public snmpTrapsOid
// = TITLE
// Defines the RFC 1215 device/agent invalid access trap
{
public:
authenticationFailureOid( void){*this+=".5";}
};
class ACE_Export egpNeighborLossOid: public snmpTrapsOid
// = TITLE
// Defines the RFC 1215 Exterior Gateway Protocol neighbor loss trap
{
public:
egpNeighborLossOid( void){*this+=".6";}
};
#ifdef DEFINE_TRAP_CONSTANTS_
const coldStartOid coldStart;
const warmStartOid warmStart;
const linkDownOid linkDown;
const linkUpOid linkUp;
const authenticationFailureOid authenticationFailure;
const egpNeighborLossOid egpNeighborLoss;
const snmpTrapEnterpriseOid snmpTrapEnterprise;
#endif
#endif // ENTTRAPS_
|