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

SNMP编程

开发平台:

Unix_Linux

  1. #ifndef SERIALIZE_H
  2. #define SERIALIZE_H
  3. /*
  4.  * The serialized helper merely calls its clients multiple times for a
  5.  * * given request set, so they don't have to loop through the requests
  6.  * * themselves.
  7.  */
  8. #ifdef __cplusplus
  9. extern          "C" {
  10. #endif
  11.     netsnmp_mib_handler *netsnmp_get_serialize_handler(void);
  12.     int             netsnmp_register_serialize(netsnmp_handler_registration
  13.                                                *reginfo);
  14.     void            netsnmp_init_serialize(void);
  15.     Netsnmp_Node_Handler netsnmp_serialize_helper_handler;
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif