snmperrs.h
资源名称:hp_snmp3.zip [点击查看]
上传用户:czjinwang
上传日期:2007-01-12
资源大小:2484k
文件大小:9k
源码类别:
SNMP编程
开发平台:
Visual C++
- /*===================================================================
- Copyright (c) 1999
- Hewlett-Packard Company
- ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
- Permission to use, copy, modify, distribute and/or sell this software
- and/or its documentation is hereby granted without fee. User agrees
- to display the above copyright notice and this license notice in all
- copies of the software and any documentation of the software. User
- agrees to assume all liability for the use of the software; Hewlett-Packard
- makes no representations about the suitability of this software for any
- purpose. It is provided "AS-IS without warranty of any kind,either express
- or implied. User hereby grants a royalty-free license to any and all
- derivatives based upon this software code base.
- SNMP++ S N M P E R R S. H
- SNMP++ ERROR CODE AND STRING DEFINITIONS
- VERSION
- 2.8
- RCS INFO:
- $Header: snmperrs.h,v 1.13 96/09/05 18:33:51 hmgr Exp $
- DESCRIPTION:
- Definition of error macros and error strings
- DESIGN:
- Jeff Meyer
- AUTHOR:
- Jeff Meyer
- LANGUAGE:
- ANSI C++
- OPERATING SYSTEMS:
- WIN32
- BSD UNIX
- ============================================================================*/
- #ifndef _SNMPERRS_H
- #define _SNMPERRS_H
- //-------[ Positive SNMP ++ Error Return Codes ]------------------------------
- // These values are error status values from RFC 1905
- //
- // The values can be returned via Pdu::get_error_status()
- //
- #define SNMP_ERROR_SUCCESS 0 // Success Status
- #define SNMP_ERROR_TOO_BIG 1 // Pdu encoding too big
- #define SNMP_ERROR_NO_SUCH_NAME 2 // No such VB name, see error index
- #define SNMP_ERROR_BAD_VALUE 3 // Bad Vb
- #define SNMP_ERROR_READ_ONLY 4 // VB is read only, see error index
- #define SNMP_ERROR_GENERAL_VB_ERR 5 // General VB error, see error index
- #define SNMP_ERROR_NO_ACCESS 6 // No access to MIBs data
- #define SNMP_ERROR_WRONG_TYPE 7 // Requested type was incorrect
- #define SNMP_ERROR_WRONG_LENGTH 8 // Request Pdu has inccorect length
- #define SNMP_ERROR_WRONG_ENCODING 9 // Request Pdu has wrong encoding
- #define SNMP_ERROR_WRONG_VALUE 10 // Request Pdu has wrong value
- #define SNMP_ERROR_NO_CREATION 11 // Unable to create object specified
- #define SNMP_ERROR_INCONSIST_VAL 12 // Inconsistent value in request
- #define SNMP_ERROR_RESOURCE_UNAVAIL 13 // Resources unavailable
- #define SNMP_ERROR_COMITFAIL 14 // Unable to comit
- #define SNMP_ERROR_UNDO_FAIL 15 // Unable to undo
- #define SNMP_ERROR_AUTH_ERR 16 // Authentication failure
- #define SNMP_ERROR_NOT_WRITEABLE 17 // Mib Object not writeable
- #define SNMP_ERROR_INCONSIS_NAME 18 // Inconsistent naming used
- //-------[ Negative SNMP ++ Result/Error Return Codes ]-------------------
- // General
- #define SNMP_CLASS_SUCCESS 0 // success
- #define SNMP_CLASS_ERROR -1 // general error
- #define SNMP_CLASS_RESOURCE_UNAVAIL -2 // e.g., malloc failed
- #define SNMP_CLASS_INTERNAL_ERROR -3 // unexpected / internal error
- #define SNMP_CLASS_UNSUPPORTED -4 // unsupported function
- // Callback reasons:
- #define SNMP_CLASS_TIMEOUT -5 // outstanding request timed out
- #define SNMP_CLASS_ASYNC_RESPONSE -6 // received response for outstd request
- #define SNMP_CLASS_NOTIFICATION -7 // received notification (trap/inform)
- #define SNMP_CLASS_SESSION_DESTROYED -8 // snmp::destroyed with oustanding reqs pending
- // Snmp Class:
- #define SNMP_CLASS_INVALID -10 // snmp::mf called on invalid instance
- #define SNMP_CLASS_INVALID_PDU -11 // invalid pdu passed to mf
- #define SNMP_CLASS_INVALID_TARGET -12 // invalid target passed to mf
- #define SNMP_CLASS_INVALID_CALLBACK -13 // invalid callback to mf
- #define SNMP_CLASS_INVALID_REQID -14 // invalid request id to cancel
- #define SNMP_CLASS_INVALID_NOTIFYID -15 // missing trap/inform oid
- #define SNMP_CLASS_INVALID_OPERATION -16 // snmp operation not allowed for specified target
- #define SNMP_CLASS_INVALID_OID -17 // invalid oid passed to mf
- #define SNMP_CLASS_INVALID_ADDRESS -18 // invalid address passed to mf
- #define SNMP_CLASS_ERR_STATUS_SET -19 // agent returned response pdu with error_status set
- // Transport Errors:
- #define SNMP_CLASS_TL_UNSUPPORTED -20 // transport unsupported
- #define SNMP_CLASS_TL_IN_USE -21 // transport in use
- #define SNMP_CLASS_TL_FAILED -22 // transport operation failed
- // extras
- #define SNMP_CLASS_SHUTDOWN -23 // used for back door shutdown
- #ifdef _INCLUDE_SNMP_ERR_STRINGS
- // ASCII strings returned through Snmp::error() function. NOTE: altering
- // the strings in this header file will not affect the return values of
- // Snmp::error(), unless you rebuild the SNMP++ library from source.
- #define MAX_POS_ERROR SNMP_ERROR_INCONSIS_NAME
- #define MAX_NEG_ERROR SNMP_CLASS_SHUTDOWN
- static char * pErrs[] = {
- (char*) "Success", // 0
- (char*) "SNMP: Response PDU Too Big", // 1
- (char*) "SNMP: Variable does not exist", // 2
- (char*) "SNMP: Cannot modify variable: Bad Value", // 3
- (char*) "SNMP: Cannot modify object, Read Only", // 4
- (char*) "SNMP: Cannot perform operation, General Error", // 5
- (char*) "SNMP: Cannot access variable, No Access", // 6
- (char*) "SNMP: Cannot create/modify variable, Wrong Type", // 7
- (char*) "SNMP: Cannot create/set variable, Wrong Length", // 8
- (char*) "SNMP: Cannot create/set variable, Wrong Encoding", // 9
- (char*) "SNMP: Cannot create/set variable, Wrong Value", // 10
- (char*) "SNMP: Cannot create variable, Creation Not Allowed", // 11
- (char*) "SNMP: Cannot create/set variable, Inconsistent Value", // 12
- (char*) "SNMP: Cannot create/set variable, Resource Unavailable", // 13
- (char*) "SNMP: Cannot create/set variable, Commit Failed", // 14
- (char*) "SNMP: Cannot create/set variable, Undo Failed", // 15
- (char*) "SNMP: Cannot perform operation, Authorization Error", // 16
- (char*) "SNMP: Cannot create/set variable, Not Writable", // 17
- (char*) "SNMP: Cannot create variable, Inconsistent Name", // 18
- (char*) "SNMP: Unknown Error Status" // 19
- };
- static char * nErrs[] = {
- // General:
- // 0 SNMP_CLASS_SUCCESS
- (char*) "SNMP++: Success",
- // 1 SNMP_CLASS_ERROR
- (char*) "SNMP++: Operation failed",
- // 2 SNMP_CLASS_RESOURCE_UNAVAIL
- (char*) "SNMP++: Resource unavailable",
- // 3 SNMP_CLASS_INTERNAL_ERROR
- (char*) "SNMP++: Internal error",
- // 4 SNMP_CLASS_UNSUPPORTED
- (char*) "SNMP++: Unsupported function",
- // Callback reasons:
- // 5 SNMP_CLASS_TIMEOUT
- (char*) "SNMP++: SNMP request timed out",
- // 6 SNMP_CLASS_ASYNC_RESPONSE
- (char*) "SNMP++: Received SNMP Response",
- // 7 SNMP_CLASS_NOTIFICATION
- (char*) "SNMP++: Received SNMP Notification (trap or inform)",
- // 8 SNMP_CLASS_SESSION_DESTROYED
- (char*) "SNMP++: Closing session with outstanding requests",
- // 9 reserved for future
- (char*) "Unknown error code",
- // Snmp Class errors:
- // 10 SNMP_CLASS_INVALID
- (char*) "SNMP++: Class not valid",
- // 11 SNMP_CLASS_INVALID_PDU
- (char*) "SNMP++: Invalid Pdu",
- // 12 SNMP_CLASS_INVALID_TARGET
- (char*) "SNMP++: Invalid Target",
- // 13 SNMP_CLASS_INVALID_CALLBACK
- (char*) "SNMP++: Invalid (null) Callback Function",
- // 14 SNMP_CLASS_INVALID_REQID
- (char*) "SNMP++: Invalid Request Id",
- // 15 SNMP_CLASS_INVALID_NOTIFYID
- (char*) "SNMP++: Invalid Notification Id",
- // 16 SNMP_CLASS_INVALID_OPERATION
- (char*) "SNMP++: SNMP Operation not supported on specified Target",
- // 17 SNMP_CLASS_INVALID_OID
- (char*) "SNMP++: Invalid Object Identifier",
- // 18 SNMP_CLASS_INVALID_ADDRESS
- (char*) "SNMP++: Invalid Address",
- // 19 SNMP_CLASS_ERR_STATUS_SET
- (char*) "SNMP++: Agent indicates error in SNMP request",
- // Transport Errors:
- // 20 SNMP_CLASS_TL_UNSUPPORTED
- (char*) "SNMP++: Transport is not supported",
- // 21 SNMP_CLASS_TL_IN_USE
- (char*) "SNMP++: Transport is in use",
- // 22 SNMP_CLASS_TL_FAILED
- (char*) "SNMP++: Transport operation failed",
- // 23 SNMP_CLASS_SHUTDOWN
- (char*) "SNMP++: Blocked Mode Shutdown",
- // unknown error code
- (char*) "Unknown error code",
- };
- #endif //_INCLUDE_SNMP_ERR_STRINGS
- #endif //_SNMPERRS_H