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

SNMP编程

开发平台:

Unix_Linux

  1. #ifndef ROW_MERGE_H
  2. #define ROW_MERGE_H
  3. /*
  4.  * This row_merge helper splits a whole bunch of requests into chunks
  5.  * based on the row index that they refer to, and passes all requests
  6.  * for a given row to the lower handlers.
  7.  */
  8. #ifdef __cplusplus
  9. extern          "C" {
  10. #endif
  11.     netsnmp_mib_handler *netsnmp_get_row_merge_handler(int);
  12.     int   netsnmp_register_row_merge(netsnmp_handler_registration *reginfo);
  13.     void  netsnmp_init_row_merge(void);
  14.     Netsnmp_Node_Handler netsnmp_row_merge_helper_handler;
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif