snmpmsg.h
上传用户:ets1996
上传日期:2014-09-30
资源大小:353k
文件大小:6k
源码类别:

SNMP编程

开发平台:

Visual C++

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