lwIP
2.1.0
Lightweight IP stack
|
Macros | |
#define | MIB2_COPY_SYSUPTIME_TO(ptrToVal) (*(ptrToVal) = (sys_now() / 10)) |
#define | MIB2_STATS_NETIF_INC(n, x) do { ++(n)->mib2_counters.x; } while(0) |
#define | MIB2_STATS_NETIF_ADD(n, x, val) do { (n)->mib2_counters.x += (val); } while(0) |
#define | MIB2_INIT_NETIF(netif, type, speed) |
Enumerations | |
enum | snmp_ifType |
SNMP support API for implementing netifs and statitics for MIB2
#define MIB2_COPY_SYSUPTIME_TO | ( | ptrToVal | ) | (*(ptrToVal) = (sys_now() / 10)) |
This macro has a precision of ~49 days because sys_now returns u32_t. #define your own if you want ~490 days.