forked from espressif/esp-idf
Add lwip dns debug option.
This commit is contained in:
@@ -1063,4 +1063,9 @@ menu "LWIP"
|
|||||||
depends on LWIP_DEBUG
|
depends on LWIP_DEBUG
|
||||||
default n
|
default n
|
||||||
|
|
||||||
|
config LWIP_DNS_DEBUG
|
||||||
|
bool "Enable DNS debug messages"
|
||||||
|
depends on LWIP_DEBUG
|
||||||
|
default n
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
@@ -1232,6 +1232,15 @@
|
|||||||
#define SNTP_DEBUG LWIP_DBG_OFF
|
#define SNTP_DEBUG LWIP_DBG_OFF
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DNS_DEBUG: Enable debugging for DNS.
|
||||||
|
*/
|
||||||
|
#ifdef CONFIG_LWIP_DNS_DEBUG
|
||||||
|
#define DNS_DEBUG LWIP_DBG_ON
|
||||||
|
#else
|
||||||
|
#define DNS_DEBUG LWIP_DBG_OFF
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* MEMP_DEBUG: Enable debugging in memp.c.
|
* MEMP_DEBUG: Enable debugging in memp.c.
|
||||||
*/
|
*/
|
||||||
|
Reference in New Issue
Block a user