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

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  smi.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 M I . H
  43.   SMI DEFINITIONS
  44.   AUTHOR:           Peter E Mellquist
  45. =====================================================================*/
  46. // $Id: smi.h 1541 2009-05-29 11:29:22Z katz $
  47. #ifndef _SMIDEF
  48. #define _SMIDEF
  49. // make sure configuration is included first
  50. #include "snmp_pp/config_snmp_pp.h"
  51. #ifdef SNMP_PP_NAMESPACE
  52. namespace Snmp_pp {
  53. #endif
  54. #define WINFAR
  55. #define STRCAT strcat
  56. #define STRLEN strlen
  57. #define MEMCPY memcpy
  58. #define STRCPY strcpy
  59. #define MEMCMP memcmp
  60. #define XPORT
  61. #ifndef TRUE
  62. #define TRUE 1
  63. #endif
  64. #ifndef FALSE
  65. #define FALSE 0
  66. #endif
  67. //----------[ ASN/BER Base Types ]-----------------------------------------
  68. /** @name ASN/BER Base Types
  69.  *
  70.  * Basic Encoding Rules (BER) (used in forming SYNTAXes and certain
  71.  * SNMP types/values).
  72.  */
  73. //@{
  74. #define aSN_UNIVERSAL    (0x00)
  75. #define aSN_APPLICATION  (0x40)
  76. #define aSN_CONTEXT      (0x80)
  77. #define aSN_PRIVATE      (0xC0)
  78. #define aSN_PRIMITIVE    (0x00)
  79. #define aSN_CONSTRUCTOR  (0x20)
  80. //@}
  81. //------[ SNMP ObjectSyntax Values ]---------------------------------------
  82. #define sNMP_SYNTAX_SEQUENCE  (aSN_CONTEXT | aSN_CONSTRUCTOR | 0x10)
  83. /** @name Syntax Types
  84.  *
  85.  * These values are used in the "syntax" member of the smiVALUE
  86.  * structure which follows.
  87.  *
  88.  * The get_syntax() method of any class derived from SnmpSyntax returns
  89.  * one of these values.
  90.  *
  91.  * @note UInt32 is indistinguishable from Gauge32 per SNMPv2 Draft Standard
  92.  * @note NsapAddr is obsoleted as unique SMI type per SNMPv2 Draft Standard
  93.  */
  94. //@{
  95. #define sNMP_SYNTAX_INT (aSN_UNIVERSAL | aSN_PRIMITIVE | 0x02)
  96. #define sNMP_SYNTAX_BITS (aSN_UNIVERSAL | aSN_PRIMITIVE | 0x03)
  97. #define sNMP_SYNTAX_OCTETS (aSN_UNIVERSAL | aSN_PRIMITIVE | 0x04)
  98. #define sNMP_SYNTAX_NULL (aSN_UNIVERSAL | aSN_PRIMITIVE | 0x05)
  99. #define sNMP_SYNTAX_OID (aSN_UNIVERSAL | aSN_PRIMITIVE | 0x06)
  100. #define sNMP_SYNTAX_INT32 sNMP_SYNTAX_INT
  101. #define sNMP_SYNTAX_IPADDR (aSN_APPLICATION | aSN_PRIMITIVE | 0x00)
  102. #define sNMP_SYNTAX_CNTR32 (aSN_APPLICATION | aSN_PRIMITIVE | 0x01)
  103. #define sNMP_SYNTAX_GAUGE32 (aSN_APPLICATION | aSN_PRIMITIVE | 0x02)
  104. #define sNMP_SYNTAX_TIMETICKS (aSN_APPLICATION | aSN_PRIMITIVE | 0x03)
  105. #define sNMP_SYNTAX_OPAQUE (aSN_APPLICATION | aSN_PRIMITIVE | 0x04)
  106. #define sNMP_SYNTAX_CNTR64 (aSN_APPLICATION | aSN_PRIMITIVE | 0x06)
  107. #define sNMP_SYNTAX_UINT32 sNMP_SYNTAX_GAUGE32
  108. //@}
  109. //-------------------------------------------------------------------------
  110. //---------------[ Exception conditions for SNMPv2 ]-----------------------
  111. /** @name Exception conditions for SNMPv2 */
  112. //@{
  113. #define sNMP_SYNTAX_NOSUCHOBJECT    (aSN_CONTEXT | aSN_PRIMITIVE | 0x00)
  114. #define sNMP_SYNTAX_NOSUCHINSTANCE  (aSN_CONTEXT | aSN_PRIMITIVE | 0x01)
  115. #define sNMP_SYNTAX_ENDOFMIBVIEW    (aSN_CONTEXT | aSN_PRIMITIVE | 0x02)
  116. //@}
  117. //--------------[ different types of PDU's ]-------------------------------
  118. /** @name Pdu types */
  119. //@{
  120. #define sNMP_PDU_GET     (aSN_CONTEXT | aSN_CONSTRUCTOR | 0x0)
  121. #define sNMP_PDU_GETNEXT    (aSN_CONTEXT | aSN_CONSTRUCTOR | 0x1)
  122. #define sNMP_PDU_RESPONSE   (aSN_CONTEXT | aSN_CONSTRUCTOR | 0x2)
  123. #define sNMP_PDU_SET     (aSN_CONTEXT | aSN_CONSTRUCTOR | 0x3)
  124. #define sNMP_PDU_V1TRAP     (aSN_CONTEXT | aSN_CONSTRUCTOR | 0x4)
  125. #define sNMP_PDU_GETBULK    (aSN_CONTEXT | aSN_CONSTRUCTOR | 0x5)
  126. #define sNMP_PDU_INFORM     (aSN_CONTEXT | aSN_CONSTRUCTOR | 0x6)
  127. #define sNMP_PDU_TRAP       (aSN_CONTEXT | aSN_CONSTRUCTOR | 0x7)
  128. #define sNMP_PDU_REPORT     (aSN_CONTEXT | aSN_CONSTRUCTOR | 0x8)
  129. //@}
  130. //------[ smi typedefs ]---------------------------------------------------
  131. /** @name SMI typedefs
  132.  *
  133.  * SNMP-related types from RFC1442 (SMI).
  134.  */
  135. //@{
  136. // byte
  137. typedef unsigned char    SmiBYTE,       WINFAR *SmiLPBYTE;
  138. // int
  139. typedef long             SmiINT,        WINFAR *SmiLPINT;
  140. // int 32
  141. typedef SmiINT           SmiINT32,      WINFAR *SmiLPINT32;
  142. // unit32
  143. typedef unsigned long    SmiUINT32,     WINFAR *SmiLPUINT32;
  144. // octet struct
  145. typedef struct {
  146.      SmiUINT32 len;
  147.      SmiLPBYTE ptr;}     SmiOCTETS,     WINFAR *SmiLPOCTETS;
  148. // bits
  149. typedef SmiOCTETS        SmiBITS,       WINFAR *SmiLPBITS;
  150. // SMI oid struct
  151. typedef struct {
  152.      SmiUINT32   len;
  153.      SmiLPUINT32 ptr;}   SmiOID,        WINFAR *SmiLPOID;
  154. // ipaddr
  155. typedef SmiOCTETS        SmiIPADDR,     WINFAR *SmiLPIPADDR;
  156. // 32bit counter
  157. typedef SmiUINT32        SmiCNTR32,     WINFAR *SmiLPCNTR32;
  158. // gauge
  159. typedef SmiUINT32        SmiGAUGE32,    WINFAR *SmiLPGAUGE32;
  160. // timeticks
  161. typedef SmiUINT32        SmiTIMETICKS,  WINFAR *SmiLPTIMETICKS;
  162. // opaque
  163. typedef SmiOCTETS        SmiOPAQUE,     WINFAR *SmiLPOPAQUE;
  164. // nsapaddr
  165. typedef SmiOCTETS        SmiNSAPADDR,   WINFAR *SmiLPNSAPADDR;
  166. // 64 bit counter
  167. typedef struct {
  168.         SmiUINT32 hipart;
  169.         SmiUINT32 lopart;} SmiCNTR64,   WINFAR *SmiLPCNTR64;
  170. //@}
  171. #ifdef SNMP_PP_NAMESPACE
  172. } // end of namespace Snmp_pp
  173. #endif 
  174. #endif