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

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * Error routines concerning the error status of the SNMP API.
  3.  *
  4.  * Sometimes things don't work out the way we wanted.
  5.  *
  6.  */
  7. /***************************************************************************
  8.  *
  9.  *           Copyright 1997 by Carnegie Mellon University
  10.  * 
  11.  *                       All Rights Reserved
  12.  * 
  13.  * Permission to use, copy, modify, and distribute this software and its
  14.  * documentation for any purpose and without fee is hereby granted,
  15.  * provided that the above copyright notice appear in all copies and that
  16.  * both that copyright notice and this permission notice appear in
  17.  * supporting documentation, and that the name of CMU not be
  18.  * used in advertising or publicity pertaining to distribution of the
  19.  * software without specific, written prior permission.
  20.  * 
  21.  * CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  22.  * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  23.  * CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  24.  * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  25.  * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  26.  * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  27.  * SOFTWARE.
  28.  * 
  29.  * Author: Ryan Troll <ryan+@andrew.cmu.edu>
  30.  * 
  31.  ***************************************************************************/
  32. #ifdef HAVE_CONFIG_H
  33. #include "config.h"
  34. #endif /* HAVE_CONFIG_H */
  35. #include <stdio.h>
  36. #include "snmp_api_error.h"
  37. /***************************************************************************
  38.  *
  39.  ***************************************************************************/
  40. int snmp_errno = 0;
  41. static char *api_errors[17] =
  42. {
  43.     "Unknown Error",
  44.     "Generic Error",
  45.     "Invalid local port",
  46.     "Unknown host",
  47.     "Unknown session",
  48.     "Too Long",
  49.     "Encoding ASN.1 Information", /* 6 */
  50.     "Decoding ASN.1 Information", /* 7 */
  51.     "PDU Translation error",
  52.     "OS Error",
  53.     "Invalid Textual OID",
  54.     "Unable to fix PDU",
  55.     "Unsupported SNMP Type",
  56.     "Unable to parse PDU",
  57.     "Packet Error",
  58.     "No Response From Host",
  59.     "Unknown Error"
  60. };
  61. void 
  62. snmp_set_api_error(int x)
  63. {
  64.     snmp_errno = x;
  65. }
  66. char *
  67. snmp_api_error(int err)
  68. {
  69.     int foo = (err * -1);
  70.     if ((foo < SNMPERR_GENERR) ||
  71. (foo > SNMPERR_LAST))
  72. foo = 0;
  73.     return (api_errors[foo]);
  74. }
  75. int 
  76. snmp_api_errno(void)
  77. {
  78.     return (snmp_errno);
  79. }
  80. char *
  81. api_errstring(int snmp_errnumber)
  82. {
  83.     return (snmp_api_error(snmp_errnumber));
  84. }