mirror of
https://github.com/ep00ch/lwip-contrib-mac.git
synced 2024-10-30 18:28:43 +00:00
27 lines
356 B
C
27 lines
356 B
C
|
/**
|
||
|
* @file
|
||
|
* Exports Private lwIP MIB
|
||
|
*/
|
||
|
|
||
|
#ifndef __LWIP_PRIVATE_MIB_H__
|
||
|
#define __LWIP_PRIVATE_MIB_H__
|
||
|
|
||
|
#include "arch/cc.h"
|
||
|
#include "lwip/opt.h"
|
||
|
|
||
|
#if LWIP_SNMP
|
||
|
#include "lwip/snmp_structs.h"
|
||
|
extern const struct mib_array_node private;
|
||
|
|
||
|
/** @todo remove this?? */
|
||
|
struct private_msg
|
||
|
{
|
||
|
u8_t dummy;
|
||
|
};
|
||
|
|
||
|
void lwip_privmib_init(void);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif
|