snmp_compat.h
上传用户:liugui
上传日期:2007-01-04
资源大小:822k
文件大小:2k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /* -*- c++ -*- */
  2. #ifndef _SNMP_COMPAT_H_
  3. #define _SNMP_COMPAT_H_
  4. /***************************************************************************
  5.  *
  6.  *           Copyright 1997 by Carnegie Mellon University
  7.  * 
  8.  *                       All Rights Reserved
  9.  * 
  10.  * Permission to use, copy, modify, and distribute this software and its
  11.  * documentation for any purpose and without fee is hereby granted,
  12.  * provided that the above copyright notice appear in all copies and that
  13.  * both that copyright notice and this permission notice appear in
  14.  * supporting documentation, and that the name of CMU not be
  15.  * used in advertising or publicity pertaining to distribution of the
  16.  * software without specific, written prior permission.
  17.  * 
  18.  * CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  19.  * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  20.  * CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  21.  * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22.  * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  23.  * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  24.  * SOFTWARE.
  25.  * 
  26.  * Author: Ryan Troll <ryan+@andrew.cmu.edu>
  27.  * 
  28.  * $Id: snmp_compat.h,v 1.3 1998/04/04 01:43:45 kostas Exp $
  29.  * 
  30.  ***************************************************************************/
  31. /* SMI Types */
  32. #ifndef INTEGER
  33. #define INTEGER     ASN_INTEGER
  34. #define STRING      ASN_OCTET_STR
  35. #define OBJID       ASN_OBJECT_ID
  36. #define NULLOBJ     ASN_NULL
  37. #endif
  38. /* PDU Types */
  39. #define GET_REQ_MSG     (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x0)
  40. #define GETNEXT_REQ_MSG     (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x1)
  41. #define GET_RSP_MSG         (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x2)
  42. #define SET_REQ_MSG         (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x3)
  43. #define TRP_REQ_MSG     (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x4) /*Obsolete */
  44. #define INFORM_REQ_MSG      (ASN_CONTEXT | ASN_CONSTRUCTOR | 0x6)
  45. #endif /* _SNMP_COMPAT_H_ */