added files
[bcm963xx.git] / userapps / opensource / net-snmp / include / net-snmp / agent / agent_read_config.h
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
8 #ifdef __cplusplus
9 extern          "C" {
10 #endif
11
12     void            init_agent_read_config(const char *);
13     void            update_config(void);
14     void            snmpd_register_config_handler(const char *,
15                                                   void (*parser) (const
16                                                                   char *,
17                                                                   char *),
18                                                   void (*releaser) (void),
19                                                   const char *);
20     void            snmpd_unregister_config_handler(const char *);
21     void            snmpd_store_config(const char *);
22
23 #ifdef __cplusplus
24 }
25 #endif
26 #endif                          /* _AGENT_READ_CONFIG_H */