oid_def.h
上传用户:uncom666
上传日期:2020-03-30
资源大小:1426k
文件大小:4k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  oid_def.h  
  4.   _##
  5.   _##  SNMP++v3.2.24
  6.   _##  -----------------------------------------------
  7.   _##  Copyright (c) 2001-2009 Jochen Katz, Frank Fock
  8.   _##
  9.   _##  This software is based on SNMP++2.6 from Hewlett Packard:
  10.   _##  
  11.   _##    Copyright (c) 1996
  12.   _##    Hewlett-Packard Company
  13.   _##  
  14.   _##  ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  15.   _##  Permission to use, copy, modify, distribute and/or sell this software 
  16.   _##  and/or its documentation is hereby granted without fee. User agrees 
  17.   _##  to display the above copyright notice and this license notice in all 
  18.   _##  copies of the software and any documentation of the software. User 
  19.   _##  agrees to assume all liability for the use of the software; 
  20.   _##  Hewlett-Packard and Jochen Katz make no representations about the 
  21.   _##  suitability of this software for any purpose. It is provided 
  22.   _##  "AS-IS" without warranty of any kind, either express or implied. User 
  23.   _##  hereby grants a royalty-free license to any and all derivatives based
  24.   _##  upon this software code base. 
  25.   _##  
  26.   _##  Stuttgart, Germany, Fri May 29 22:35:14 CEST 2009 
  27.   _##  
  28.   _##########################################################################*/
  29. /*===================================================================
  30.   Copyright (c) 1999
  31.   Hewlett-Packard Company
  32.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  33.   Permission to use, copy, modify, distribute and/or sell this software
  34.   and/or its documentation is hereby granted without fee. User agrees
  35.   to display the above copyright notice and this license notice in all
  36.   copies of the software and any documentation of the software. User
  37.   agrees to assume all liability for the use of the software; Hewlett-Packard
  38.   makes no representations about the suitability of this software for any
  39.   purpose. It is provided "AS-IS" without warranty of any kind,either express
  40.   or implied. User hereby grants a royalty-free license to any and all
  41.   derivatives based upon this software code base.
  42.       SNMP++ O I D _ D E F . H
  43.       OID_DEF DEFINITIONS
  44.       DESCRIPTION:
  45.         Some common Oid definitions.
  46.       DESIGN + AUTHOR:        Peter E Mellquist
  47. =====================================================================*/
  48. // $Id: oid_def.h 1541 2009-05-29 11:29:22Z katz $
  49. #ifndef _OID_DEF
  50. #define _OID_DEF
  51. #include "snmp_pp/oid.h"
  52. #ifdef SNMP_PP_NAMESPACE
  53. namespace Snmp_pp {
  54. #endif
  55. /** SMI trap oid def */
  56. class snmpTrapsOid: public Oid {
  57.  public:
  58.   DLLOPT snmpTrapsOid() : Oid("1.3.6.1.6.3.1.1.5") {};
  59. };
  60. /** SMI Enterprose Oid */
  61. class snmpTrapEnterpriseOid: public Oid {
  62.  public:
  63.   DLLOPT snmpTrapEnterpriseOid() : Oid("1.3.6.1.6.3.1.1.4.3.0") {};
  64. };
  65. /** SMI Cold Start Oid */
  66. class coldStartOid: public snmpTrapsOid {
  67.    public:
  68.    DLLOPT coldStartOid() { *this+=".1"; };
  69. };
  70. /** SMI WarmStart Oid */
  71. class warmStartOid: public snmpTrapsOid {
  72.    public:
  73.    DLLOPT warmStartOid() { *this+=".2"; };
  74. };
  75. /** SMI LinkDown Oid */
  76. class linkDownOid: public snmpTrapsOid {
  77.    public:
  78.    DLLOPT linkDownOid() { *this+=".3"; };
  79. };
  80. /** SMI LinkUp Oid */
  81. class linkUpOid: public snmpTrapsOid {
  82.    public:
  83.    DLLOPT linkUpOid() { *this+=".4"; };
  84. };
  85. /** SMI Authentication Failure Oid */
  86. class authenticationFailureOid: public snmpTrapsOid {
  87.    public:
  88.    DLLOPT authenticationFailureOid() { *this+=".5"; };
  89. };
  90. /** SMI egpneighborloss Oid */
  91. class egpNeighborLossOid: public snmpTrapsOid {
  92.  public:
  93.   DLLOPT egpNeighborLossOid() { *this+=".6"; };
  94. };
  95. #ifdef SNMP_PP_NAMESPACE
  96. } // end of namespace Snmp_pp
  97. #endif 
  98. #endif // _OID_DEF