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

SNMP编程

开发平台:

Unix_Linux

  1. /*
  2.  * agent_read_config.h: reads configuration files for extensible sections.
  3.  *
  4.  */
  5. #ifndef _AGENT_READ_CONFIG_H
  6. #define _AGENT_READ_CONFIG_H
  7. #ifdef __cplusplus
  8. extern          "C" {
  9. #endif
  10.     void            init_agent_read_config(const char *);
  11.     void            update_config(void);
  12.     void            snmpd_register_config_handler(const char *,
  13.                                                   void (*parser) (const
  14.                                                                   char *,
  15.                                                                   char *),
  16.                                                   void (*releaser) (void),
  17.                                                   const char *);
  18.     void            snmpd_unregister_config_handler(const char *);
  19.     void            snmpd_store_config(const char *);
  20. #ifdef __cplusplus
  21. }
  22. #endif
  23. #endif                          /* _AGENT_READ_CONFIG_H */