X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/15c408ab8635fe45226abc2c55c9bebfe1ccb6c8..a114878209e275cbbbad64e79746975f4c16a291:/Projects/Webserver/Lib/uip/conf/uip-conf.h diff --git a/Projects/Webserver/Lib/uip/conf/uip-conf.h b/Projects/Webserver/Lib/uip/conf/uip-conf.h index d3d9bc453..b13d0e19f 100644 --- a/Projects/Webserver/Lib/uip/conf/uip-conf.h +++ b/Projects/Webserver/Lib/uip/conf/uip-conf.h @@ -79,7 +79,11 @@ typedef unsigned short uip_stats_t; * * \hideinitializer */ -#define UIP_CONF_UDP 0 +#if defined(ENABLE_DHCP) + #define UIP_CONF_UDP 1 +#else + #define UIP_CONF_UDP 0 +#endif /** * UDP checksums on or off @@ -109,6 +113,12 @@ typedef unsigned short uip_stats_t; */ #define UIP_CONF_UDP_CONNS 1 +/** + * Host identifier define (e.g. MAC address). If defined as 0, + * this will use the internal MAC ethernet address define. + */ +#define UIP_NEIGHBOR_CONF_ADDRTYPE 0 + //Include app configuration #include "apps-conf.h"