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

SNMP编程

开发平台:

Visual C++

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