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

代理服务器

开发平台:

Unix_Linux

  1. /* -*- c++ -*- */
  2. #ifndef _SNMP_API_ERROR_H_
  3. #define _SNMP_API_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.  * Author: Ryan Troll <ryan+@andrew.cmu.edu>
  27.  * 
  28.  * $Id: snmp_api_error.h,v 1.2 1998/04/04 01:43:43 kostas Exp $
  29.  * 
  30.  ***************************************************************************/
  31. /* Error return values */
  32. #define SNMPERR_GENERR -1
  33. #define SNMPERR_BAD_LOCPORT -2 /* local port was already in use */
  34. #define SNMPERR_BAD_ADDRESS -3
  35. #define SNMPERR_BAD_SESSION -4
  36. #define SNMPERR_TOO_LONG -5 /* data too long for provided buffer */
  37. #define SNMPERR_ASN_ENCODE      -6
  38. #define SNMPERR_ASN_DECODE      -7
  39. #define SNMPERR_PDU_TRANSLATION -8
  40. #define SNMPERR_OS_ERR          -9
  41. #define SNMPERR_INVALID_TXTOID  -10
  42. #define SNMPERR_UNABLE_TO_FIX   -11
  43. #define SNMPERR_UNSUPPORTED_TYPE -12
  44. #define SNMPERR_PDU_PARSE        -13
  45. #define SNMPERR_PACKET_ERR      -14
  46. #define SNMPERR_NO_RESPONSE     -15
  47. #define SNMPERR_LAST            -16 /* Last error message */
  48. #ifdef __cplusplus
  49. extern "C" {
  50. #endif
  51. /* extern int snmp_errno */
  52.     char *snmp_api_error(int);
  53.     int snmp_api_errno(void);
  54.     char *api_errstring(int); /* Backwards compatibility */
  55.     void snmp_set_api_error(int);
  56. #ifdef __cplusplus
  57. }
  58. #endif
  59. #endif /* _SNMP_API_ERROR_H_ */