added files
[bcm963xx.git] / userapps / opensource / net-snmp / include / net-snmp / agent / read_only.h
1 #ifndef READ_ONLY_H
2 #define READ_ONLY_H
3
4 #ifdef __cplusplus
5 extern          "C" {
6 #endif
7
8 /*
9  * read_only.h 
10  */
11
12 /*
13  * The helper merely intercepts SET requests and handles them early on
14  * making everything read-only (no SETs are actually permitted).
15  * Useful as a helper to handlers that are implementing MIBs with no
16  * SET support.
17  */
18
19
20 netsnmp_mib_handler *netsnmp_get_read_only_handler(void);
21 void            netsnmp_init_read_only_helper(void);
22
23 Netsnmp_Node_Handler netsnmp_read_only_helper;
24
25
26 #ifdef __cplusplus
27 }
28 #endif
29 #endif