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

代理服务器

开发平台:

Unix_Linux

  1. /* -*- c++ -*- */
  2. #ifndef _SNMP_ERROR_H_
  3. #define _SNMP_ERROR_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.  * $Id: snmp_error.h,v 1.2 1998/04/04 01:43:46 kostas Exp $
  27.  * 
  28.  **********************************************************************/
  29. /*
  30.  * RFC 1905: Protocol Operations for SNMPv2
  31.  *
  32.  * PDU : Error Status Values
  33.  */
  34. #define SNMP_ERR_NOERROR             (0x0)
  35. #define SNMP_ERR_TOOBIG              (0x1)
  36. #define SNMP_ERR_NOSUCHNAME          (0x2)
  37. #define SNMP_ERR_BADVALUE            (0x3)
  38. #define SNMP_ERR_READONLY            (0x4)
  39. #define SNMP_ERR_GENERR              (0x5)
  40. #define SNMP_ERR_NOACCESS            (0x6)
  41. #define SNMP_ERR_WRONGTYPE           (0x7)
  42. #define SNMP_ERR_WRONGLENGTH         (0x8)
  43. #define SNMP_ERR_WRONGENCODING       (0x9)
  44. #define SNMP_ERR_WRONGVALUE          (0x10)
  45. #define SNMP_ERR_NOCREATION          (0x11)
  46. #define SNMP_ERR_INCONSISTENTVALUE   (0x12)
  47. #define SNMP_ERR_RESOURCEUNAVAILABLE (0x13)
  48. #define SNMP_ERR_COMMITFAILED        (0x14)
  49. #define SNMP_ERR_UNDOFAILED          (0x15)
  50. #define SNMP_ERR_AUTHORIZATIONERROR  (0x16)
  51. #define SNMP_ERR_NOTWRITABLE         (0x17)
  52. #define SNMP_ERR_INCONSISTENTNAME    (0x18)
  53. #ifdef __cplusplus
  54. extern "C" {
  55. #endif
  56.     char *snmp_errstring(int);
  57. #ifdef __cplusplus
  58. }
  59. #endif
  60. #endif /* _SNMP_ERROR_H_ */