net-snmp
5.4.1
|
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 *, 00015 void (*parser) (const 00016 char *, 00017 char *), 00018 void (*releaser) (void), 00019 const char *); 00020 void snmpd_unregister_config_handler(const char *); 00021 void snmpd_store_config(const char *); 00022 00023 #ifdef __cplusplus 00024 } 00025 #endif 00026 #endif /* _AGENT_READ_CONFIG_H */