Add lwip dns debug option.

This commit is contained in:
Mengsk
2022-03-30 15:45:56 +02:00
parent 66593bf140
commit 42efbb1a57
2 changed files with 14 additions and 0 deletions

View File

@@ -1232,6 +1232,15 @@
#define SNTP_DEBUG LWIP_DBG_OFF
#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.
*/