From 557a0c7ae399597950eaa7bbdf454438ab5787bc Mon Sep 17 00:00:00 2001 From: marcbou Date: Thu, 16 Aug 2007 19:55:30 +0000 Subject: [PATCH] Removed TCPIP_MSG_ETHINPUT. TCPIP_MSG_INPUT now used for both ETHARP_TCPIP_INPUT and ETHARP_TCPIP_ETHINPUT. --- src/include/lwip/tcpip.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/include/lwip/tcpip.h b/src/include/lwip/tcpip.h index 6c00b3f8..90de8532 100644 --- a/src/include/lwip/tcpip.h +++ b/src/include/lwip/tcpip.h @@ -86,12 +86,9 @@ err_t tcpip_timeout(u32_t msecs, sys_timeout_handler h, void *arg); enum tcpip_msg_type { TCPIP_MSG_API, -#if ETHARP_TCPIP_INPUT +#if ETHARP_TCPIP_INPUT || ETHARP_TCPIP_ETHINPUT TCPIP_MSG_INPUT, -#endif /* ETHARP_TCPIP_INPUT */ -#if ETHARP_TCPIP_ETHINPUT - TCPIP_MSG_ETHINPUT, -#endif /* ETHARP_TCPIP_ETHINPUT */ +#endif /* ETHARP_TCPIP_INPUT || ETHARP_TCPIP_ETHINPUT */ #if LWIP_NETIF_API TCPIP_MSG_NETIFAPI, #endif /* LWIP_NETIF_API */