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

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  snmpmsg.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++ S N M P M E S S A G E . H
  43.   SNMPMESSAGE CLASS DEFINITION
  44.   DESIGN + AUTHOR:  Peter E Mellquist
  45.   DESCRIPTION:
  46.   ASN.1 encoding / decoding class
  47.       
  48. =====================================================================*/
  49. // $Id: snmpmsg.h 1541 2009-05-29 11:29:22Z katz $
  50. #ifndef _SNMPMSG
  51. #define _SNMPMSG
  52. #include "snmp_pp/config_snmp_pp.h"
  53. #include "snmp_pp/smival.h"
  54. #include "snmp_pp/pdu.h"
  55. #include "snmp_pp/target.h"
  56. #include "snmp_pp/asn1.h"
  57. #include "snmp_pp/mp_v3.h"
  58. #ifdef SNMP_PP_NAMESPACE
  59. namespace Snmp_pp {
  60. #endif
  61. DLLOPT void freeSmivalDescriptor( SmiVALUE* );
  62. DLLOPT int convertVbToSmival( const Vb&, SmiVALUE* );
  63. #define SNMP_MSG_OID_SYSUPTIME "1.3.6.1.2.1.1.3.0"
  64. #define SNMP_MSG_OID_TRAPID    "1.3.6.1.6.3.1.1.4.1.0"
  65. class Snmp;
  66. // SnmpMessage Class
  67. class DLLOPT SnmpMessage
  68. {
  69.  public:
  70.   // construct a SnmpMessage object
  71.   SnmpMessage() : bufflen(MAX_SNMP_PACKET), valid_flag(false) {};
  72. // load up using a Pdu, community and SNMP version
  73. // performs ASN.1 serialization
  74. // result status returned
  75.  private:
  76. int load( const Pdu &pdu,                // Pdu to serialize
  77.                   const OctetStr &community,     // community name to use
  78.                   const snmp_version version,    // SNMP version, v1 or v2
  79.                   const OctetStr *engine_id,     // optional v3
  80.                   const OctetStr *security_name, // optional v3
  81.                   const int security_model);     // optional v3
  82.  public:
  83. int load( const Pdu &pdu,              // Pdu to serialize
  84.                   const OctetStr &community,   // community name to use
  85.                   const snmp_version version)  // SNMP version, v1 or v2
  86.   { return load(pdu, community, version, 0, 0, 0); };
  87. // load up message using ASN.1 data stream
  88. // status is returned
  89. int load( unsigned char *data,         // data to be loaded
  90.   unsigned long len);        // len of data to be loaded
  91. // unload ( unserialize ) into SNMP++ Pdu, community and version
  92. // status is returned
  93.  private:
  94. int unload( Pdu &pdu,                    // Pdu returned
  95.                     OctetStr &community,         // community name
  96.                     snmp_version &version,       // version
  97.                     OctetStr *engine_id,         // optional v3
  98.                     OctetStr *security_name, // optional v3
  99.                     long int *security_model,
  100.     UdpAddress *from_addr,
  101.                     Snmp *snmp_session);
  102.  public:
  103. int unload( Pdu &pdu,                    // Pdu returned
  104.                     OctetStr &community,         // community name
  105.                     snmp_version &version)       // version
  106.   { return unload(pdu, community, version, 0, 0, 0, 0, 0); };
  107. #ifdef _SNMPv3
  108. int loadv3( const Pdu &pdu,               // Pdu to serialize
  109.                     const OctetStr &engine_id,    // engine_id to use
  110.                     const OctetStr &sec_name,     // securit_name to use
  111.                     const int sec_model,          // security_model to use
  112.                     const snmp_version version)   // SNMP version, v3
  113. { return load(pdu, "", version, &engine_id, &sec_name, sec_model); }
  114. int unloadv3( Pdu &pdu,                  // Pdu returned
  115.                       snmp_version &version,     // version
  116.                       OctetStr &engine_id,       // optional v3
  117.                       OctetStr &security_name,   // optional v3
  118.                       long int &security_model,
  119.       UdpAddress &from_addr,
  120.                       Snmp &snmp_session);
  121.         // returns TRUE if the message in the buffer is a v3 message
  122.         bool is_v3_message() {return v3MP::is_v3_msg(databuff, (int)bufflen);};
  123. #endif
  124. // return the validity of the message
  125. bool valid() const         { return valid_flag;};
  126. // return raw data
  127. // check validity
  128. unsigned char *data()     { return databuff; };
  129. // returns len
  130. // check validity
  131. unsigned long len() const { return bufflen; };
  132. protected:
  133. unsigned char databuff[MAX_SNMP_PACKET];
  134. unsigned int bufflen;
  135. bool valid_flag;
  136. };
  137. #ifdef SNMP_PP_NAMESPACE
  138. } // end of namespace Snmp_pp
  139. #endif 
  140. #endif  // _SNMPMSG