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

SNMP编程

开发平台:

Visual C++

  1. /*_############################################################################
  2.   _## 
  3.   _##  snmp_pp.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_PP . H
  43.    SNMP CLASS DEFINITION
  44.   DESIGN + AUTHOR:
  45.    Peter E Mellquist
  46.   LANGUAGE:
  47.    ANSI C++
  48.   OPERATING SYSTEMS:
  49.    Win32
  50.    BSD UNIX
  51. =====================================================================*/
  52. // $Id: snmp_pp.h 232 2006-03-10 20:43:44Z katz $
  53. #ifndef _SNMP_PP_H_
  54. #define _SNMP_PP_H_
  55. // this is snmp++v3
  56. #define SNMP_PP_V3
  57. //-----[ snmp++ classes ]------------------------------------------------
  58. #include "snmp_pp/config_snmp_pp.h"     // config file (SNMPv3)
  59. #include "snmp_pp/oid.h"                // snmp++ oid class
  60. #include "snmp_pp/vb.h"                 // snbmp++ vb class
  61. #include "snmp_pp/target.h"             // snmp++ target class
  62. #include "snmp_pp/pdu.h"                // snmp++ pdu class
  63. #include "snmp_pp/snmperrs.h"           // error macros and strings
  64. #include "snmp_pp/address.h"            // snmp++ address class defs
  65. #include "snmp_pp/v3.h"                 // SNMPv3
  66. #include "snmp_pp/mp_v3.h"              // SNMPv3
  67. #include "snmp_pp/usm_v3.h"             // SNMPv3
  68. #include "snmp_pp/reentrant.h"
  69. #include "snmp_pp/uxsnmp.h"
  70. #include "snmp_pp/asn1.h"
  71. #include "snmp_pp/msec.h"
  72. // WinSNMP is not supported by SNMP++v3 so the unix functions need
  73. // to be included on non UNIX systems too
  74. #include "snmp_pp/eventlist.h"
  75. #include "snmp_pp/eventlistholder.h"
  76. #endif //_SNMP_PP_H_