• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * @file
3  * Exports Private lwIP MIB
4  */
5 
6 #ifndef LWIP_HDR_PRIVATE_MIB_H
7 #define LWIP_HDR_PRIVATE_MIB_H
8 
9 #include "lwip/apps/snmp_opts.h"
10 
11 #include "lwip/apps/snmp_core.h"
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 /* export MIB */
18 extern const struct snmp_mib mib_private;
19 
20 void lwip_privmib_init(void);
21 
22 #ifdef __cplusplus
23 }
24 #endif
25 
26 #endif
27