This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
esp-firewall/esp32example/include/lwip_hooks.h

17 lines
268 B
C
Raw Permalink Normal View History

2022-07-29 10:27:39 +02:00
#ifndef _LWIP_HOOKS_H_
#define _LWIP_HOOKS_H_
#ifdef __cplusplus
extern "C"
{
#endif
int lwip_hook_ip4_input(struct pbuf *pbuf, struct netif *input_netif);
#define LWIP_HOOK_IP4_INPUT lwip_hook_ip4_input
#ifdef __cplusplus
}
#endif
#endif /* _LWIP_HOOKS_H_ */