1234567891011121314151617181920 |
- /*
- * lwip_hook_ip4_input.h
- *
- * Created on: 20.05.2019
- * Author: balbekova
- */
- #ifndef LWIP_HOOK_IP4_INPUT_H_
- #define LWIP_HOOK_IP4_INPUT_H_
- #include "lwip/pbuf.h"
- #include "lwip/netif.h"
- int ip_input_hook(struct pbuf *p, struct netif *inp);
- #define LWIP_HOOK_IP4_INPUT(pbuf, input_netif) ip_input_hook(pbuf, input_netif)
- //
- #endif /* LWIP_HOOK_IP4_INPUT_H_ */
|