8 lines
149 B
C
8 lines
149 B
C
|
#include "lwip_hooks.h"
|
||
|
|
||
|
int lwip_hook_ip4_input(struct pbuf *pbuf, struct netif *input_netif)
|
||
|
{
|
||
|
ESP_LOGI("Hook", "Testing...");
|
||
|
return 0;
|
||
|
}
|