From cb7cbefb7ffe260a841d80c15dd84c8e5d2ccccc Mon Sep 17 00:00:00 2001 From: stefan Date: Wed, 11 Aug 2010 20:39:11 +0000 Subject: [PATCH] - disable theLWIP's DHCP support git-svn-id: http://svn.lfbs.rwth-aachen.de/svn/scc/trunk/MetalSVM@80 315a16e6-25f9-4109-90ae-ca3045a26c18 --- lwip/src/include/lwipopts.h | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/lwip/src/include/lwipopts.h b/lwip/src/include/lwipopts.h index 5ef58054..5519e8a3 100644 --- a/lwip/src/include/lwipopts.h +++ b/lwip/src/include/lwipopts.h @@ -24,13 +24,27 @@ /** * LWIP_DHCP==1: Enable DHCP module. */ -#define LWIP_DHCP 1 +#define LWIP_DHCP 0 /** * LWIP_TCP==1: Turn on TCP. */ #define LWIP_TCP 1 +/** + * LWIP_BROADCAST_PING==1: respond to broadcast pings (default is unicast only) + */ +#ifndef LWIP_BROADCAST_PING +#define LWIP_BROADCAST_PING 1 +#endif + +/** + * LWIP_MULTICAST_PING==1: respond to multicast pings (default is unicast only) + */ +#ifndef LWIP_MULTICAST_PING +#define LWIP_MULTICAST_PING 1 +#endif + /* DEBUG options */ #define LWIP_DEBUG 1 #define DHCP_DEBUG LWIP_DBG_ON