net-snmp 5.7
agent_read_config.h
00001 /*
00002  * agent_read_config.h: reads configuration files for extensible sections.
00003  *
00004  */
00005 #ifndef _AGENT_READ_CONFIG_H
00006 #define _AGENT_READ_CONFIG_H
00007 
00008 #ifdef __cplusplus
00009 extern          "C" {
00010 #endif
00011 
00012     void            init_agent_read_config(const char *);
00013     void            update_config(void);
00014     void            snmpd_register_config_handler(const char *token,
00015                                                   void (*parser) (const
00016                                                                   char *,
00017                                                                   char *),
00018                                                   void (*releaser) (void),
00019                                                   const char *help);
00020     void            snmpd_register_const_config_handler(
00021                                  const char *,
00022                                  void (*parser) (const char *, const char *),
00023                                  void (*releaser) (void),
00024                                  const char *);
00025     void            snmpd_unregister_config_handler(const char *);
00026     void            snmpd_store_config(const char *);
00027 
00028 #ifdef __cplusplus
00029 }
00030 #endif
00031 #endif                          /* _AGENT_READ_CONFIG_H */