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

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * The possible SNMP Error messages, from the SNMP Protocol Operations
  3.  * [ RFC 1905 ]
  4.  */
  5. /**********************************************************************
  6.  *
  7.  *           Copyright 1997 by Carnegie Mellon University
  8.  * 
  9.  *                       All Rights Reserved
  10.  * 
  11.  * Permission to use, copy, modify, and distribute this software and its
  12.  * documentation for any purpose and without fee is hereby granted,
  13.  * provided that the above copyright notice appear in all copies and that
  14.  * both that copyright notice and this permission notice appear in
  15.  * supporting documentation, and that the name of CMU not be
  16.  * used in advertising or publicity pertaining to distribution of the
  17.  * software without specific, written prior permission.
  18.  * 
  19.  * CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  20.  * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  21.  * CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  22.  * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  23.  * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  24.  * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  25.  * SOFTWARE.
  26.  * 
  27.  **********************************************************************/
  28. #include "config.h"
  29. #include <stdio.h>
  30. #include "snmp_error.h"
  31. static char *error_string[19] =
  32. {
  33.     "No Error",
  34.     "Response message would have been too large.",
  35.     "There is no such variable name in this MIB.",
  36.     "The value given has the wrong type, length, or value",
  37.     "This variable is read only",
  38.     "A general failure occured",
  39.   /* SNMPv2 Errors */
  40.     "NOACCESS",
  41.     "WRONGTYPE",
  42.     "WRONGLENGTH",
  43.     "WRONGENCODING",
  44.     "WRONGVALUE",
  45.     "NOCREATION",
  46.     "INCONSISTENTVALUE",
  47.     "RESOURCEUNAVAILABLE",
  48.     "COMMITFAILED",
  49.     "UNDOFAILED",
  50.     "AUTHORIZATIONERROR",
  51.     "NOTWRITABLE",
  52.     "INCONSISTENTNAME",
  53. };
  54. char *
  55. snmp_errstring(int errstat)
  56. {
  57.     if ((errstat <= (SNMP_ERR_INCONSISTENTNAME)) &&
  58. (errstat >= (SNMP_ERR_NOERROR))) {
  59. return error_string[errstat];
  60.     } else {
  61. return "Unknown Error";
  62.     }
  63. }