From b031be753a9a61d875c0d228342326670a8a4f85 Mon Sep 17 00:00:00 2001 From: likewise Date: Thu, 1 May 2003 09:03:20 +0000 Subject: [PATCH] Patch #1308. Disabled, as one issue in dhcp.c (file field overloading) needs fix. --- src/include/lwip/dhcp.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/include/lwip/dhcp.h b/src/include/lwip/dhcp.h index ffd191f2..f3ff2af8 100644 --- a/src/include/lwip/dhcp.h +++ b/src/include/lwip/dhcp.h @@ -46,6 +46,13 @@ struct dhcp u32_t offered_t0_lease; /* lease period (in seconds) */ u32_t offered_t1_renew; /* recommended renew time (usually 50% of lease period) */ u32_t offered_t2_rebind; /* recommended rebind time (usually 66% of lease period) */ +/** Patch #1308 + * TODO: See dhcp.c "TODO"s + */ +#if 0 + struct ip_addr offered_si_addr; + u8_t *boot_file_name; +#endif }; /* MUST be compiled with "pack structs" or equivalent! */