From 9c73326bbba1e1b150ec65fa9957217842a6892c Mon Sep 17 00:00:00 2001 From: Martin Stein Date: Mon, 26 Mar 2018 13:54:04 +0200 Subject: [PATCH] lwip: enable ICMP support This switches on the LwIP opts flag for handling ICMP packets (as far as supported). Issue #2732 --- repos/libports/include/lwip/lwipopts.h | 1 + 1 file changed, 1 insertion(+) diff --git a/repos/libports/include/lwip/lwipopts.h b/repos/libports/include/lwip/lwipopts.h index c46c043ab3..9ace20592a 100644 --- a/repos/libports/include/lwip/lwipopts.h +++ b/repos/libports/include/lwip/lwipopts.h @@ -23,6 +23,7 @@ #define LWIP_RAW 0 /* LwIP raw API */ #define LWIP_UDP 1 /* UDP support */ #define LWIP_TCP 1 /* TCP support */ +#define LWIP_ICMP 1 /* ICMP support */ #define LWIP_DNS 1 /* DNS support */ #define LWIP_DHCP 1 /* DHCP support */ #define LWIP_SOCKET 1 /* LwIP socket API */