Merge branch 'netconn_example' of https://github.com/Zaltora/esp-open-rtos into netconn_example

This commit is contained in:
lilian 2017-10-05 12:05:28 +02:00
commit f1b1efdba4

View file

@ -28,6 +28,12 @@
#define debug(s, ...)
#endif
#if (DHCP_DEBUG == LWIP_DBG_ON)
#define debug(s, ...) printf("%s: " s "\n", "DHCP", ## __VA_ARGS__)
#else
#define debug(s, ...)
#endif
/* Grow the size of the lwip dhcp_msg struct's options field, as LWIP
defaults to a 68 octet options field for its DHCP client, and most
full-sized clients send us more than this. */