snmp_client.h
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:4k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. /*
  2.  * snmp_client.h
  3.  */
  4. /***********************************************************
  5. Copyright 1988, 1989 by Carnegie Mellon University
  6.                       All Rights Reserved
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the name of CMU not be
  12. used in advertising or publicity pertaining to distribution of the
  13. software without specific, written prior permission.  
  14. CMU DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  15. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  16. CMU BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  17. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  18. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  19. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  20. SOFTWARE.
  21. ******************************************************************/
  22. #ifndef SNMP_CLIENT_H
  23. #define SNMP_CLIENT_H
  24. #ifdef __cplusplus
  25. extern          "C" {
  26. #endif
  27.     struct snmp_pdu;
  28.     struct snmp_session;
  29.     struct variable_list;
  30.     struct synch_state {
  31.         int             waiting;
  32.         int             status;
  33.         /*
  34.          * status codes 
  35.          */
  36. #define STAT_SUCCESS 0
  37. #define STAT_ERROR 1
  38. #define STAT_TIMEOUT 2
  39.         int             reqid;
  40.         netsnmp_pdu    *pdu;
  41.     };
  42.     int             snmp_set_var_value(netsnmp_variable_list *,
  43.                                        const u_char *, size_t);
  44.     int             snmp_set_var_objid(netsnmp_variable_list * vp,
  45.                                        const oid * objid,
  46.                                        size_t name_length);
  47.     int             snmp_set_var_typed_value(netsnmp_variable_list *
  48.                                              newvar, u_char type,
  49.                                              const u_char * val_str,
  50.                                              size_t val_len);
  51.     void            snmp_replace_var_types(netsnmp_variable_list * vbl,
  52.                                            u_char old_type,
  53.                                            u_char new_type);
  54.     void            snmp_reset_var_buffers(netsnmp_variable_list * var);
  55.     void            snmp_reset_var_types(netsnmp_variable_list * vbl,
  56.                                          u_char new_type);
  57.     int             count_varbinds(netsnmp_variable_list * var_ptr);
  58.     int             count_varbinds_of_type(netsnmp_variable_list * var_ptr,
  59.                                            u_char type);
  60.     netsnmp_variable_list *find_varbind_of_type(netsnmp_variable_list *
  61.                                                 var_ptr, u_char type);
  62.     netsnmp_variable_list *snmp_add_null_var(netsnmp_pdu *, const oid *, size_t);
  63.     netsnmp_pdu    *snmp_pdu_create(int);
  64.     netsnmp_pdu    *snmp_fix_pdu(netsnmp_pdu *, int);
  65.     netsnmp_pdu    *snmp_clone_pdu(netsnmp_pdu *);
  66.     netsnmp_pdu    *snmp_split_pdu(netsnmp_pdu *, int skipCount,
  67.                                    int copyCount);
  68.     unsigned long   snmp_varbind_len(netsnmp_pdu *pdu);
  69.     int             snmp_clone_var(netsnmp_variable_list *,
  70.                                    netsnmp_variable_list *);
  71.     netsnmp_variable_list *snmp_clone_varbind(netsnmp_variable_list *);
  72.     const char     *snmp_errstring(int);
  73.     int             snmp_synch_response(netsnmp_session *, netsnmp_pdu *,
  74.                                         netsnmp_pdu **);
  75.     int             snmp_synch_response_cb(netsnmp_session *,
  76.                                            netsnmp_pdu *, netsnmp_pdu **,
  77.                                            snmp_callback);
  78.     int             snmp_clone_mem(void **, void *, unsigned);
  79.     /*
  80.      * single session API - see snmp_api.h for full details 
  81.      */
  82.     int             snmp_sess_synch_response(void *, netsnmp_pdu *,
  83.                                              netsnmp_pdu **);
  84. #ifdef __cplusplus
  85. }
  86. #endif
  87. #endif                          /* SNMP_CLIENT_H */