lwip-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-devel] Build issue if LWIP_DHCP is set to 0


From: Axel Lin
Subject: [lwip-devel] Build issue if LWIP_DHCP is set to 0
Date: Mon, 8 Oct 2018 15:33:31 +0800

LWIP_DHCP_DOES_ACD_CHECK is default set to 1.
So LWIP_ACD is also set to 1 by default. (#define LWIP_ACD (LWIP_AUTOIP || LWIP_DHCP_DOES_ACD_CHECK))
So When LWIP_DHCP && LWIP_AUTOIP are both 0, I hit below error
#error "If you want to use DHCP ACD checking, you have to define LWIP_DHCP=1, LWIP_ARP=1 and LWIP_ACD=1 in your lwipopts.h"

I'm wondering if it make sense with below change:

diff --git a/src/include/lwip/opt.h b/src/include/lwip/opt.h
index abecdb45..1ccd2a83 100644
--- a/src/include/lwip/opt.h
+++ b/src/include/lwip/opt.h
@@ -927,7 +927,7 @@
  * LWIP_DHCP_DOES_ACD_CHECK==1: Perform address conflict detection on the dhcp address.
  */
 #if !defined LWIP_DHCP_DOES_ACD_CHECK || defined __DOXYGEN__
-#define LWIP_DHCP_DOES_ACD_CHECK        1
+#define LWIP_DHCP_DOES_ACD_CHECK        LWIP_DHCP
 #endif

 /**


reply via email to

[Prev in Thread] Current Thread [Next in Thread]