1 /*
2  *  UCD compatability definitions & declarations
3  *
4  */
5 
6 #ifndef NET_SNMP_UCD_COMPAT_H
7 #define NET_SNMP_UCD_COMPAT_H
8 
9 #ifdef __cplusplus
10 extern          "C" {
11 #endif
12 
13         /*
14          * from snmp_api.h
15          */
16 NETSNMP_IMPORT
17 void            snmp_set_dump_packet(int);
18 NETSNMP_IMPORT
19 int             snmp_get_dump_packet(void);
20 NETSNMP_IMPORT
21 void            snmp_set_quick_print(int);
22 NETSNMP_IMPORT
23 int             snmp_get_quick_print(void);
24 NETSNMP_IMPORT
25 void            snmp_set_suffix_only(int);
26 NETSNMP_IMPORT
27 int             snmp_get_suffix_only(void);
28 NETSNMP_IMPORT
29 void            snmp_set_full_objid(int);
30 int             snmp_get_full_objid(void);
31 NETSNMP_IMPORT
32 void            snmp_set_random_access(int);
33 NETSNMP_IMPORT
34 int             snmp_get_random_access(void);
35 
36         /*
37          * from parse.h
38          */
39 NETSNMP_IMPORT
40 void            snmp_set_mib_warnings(int);
41 NETSNMP_IMPORT
42 void            snmp_set_mib_errors(int);
43 NETSNMP_IMPORT
44 void            snmp_set_save_descriptions(int);
45 void            snmp_set_mib_comment_term(int);
46 void            snmp_set_mib_parse_label(int);
47 
48 #ifdef __cplusplus
49 }
50 #endif
51 #endif                          /* NET_SNMP_UCD_COMPAT_H */
52