From b9647ba1b1cdc14ca4210a1786c1c78a0d0ccb20 Mon Sep 17 00:00:00 2001 From: fbernon Date: Mon, 15 Oct 2007 21:32:28 +0000 Subject: [PATCH] Minor change (use DHCP_COARSE_TIMER_MSECS) --- ports/msvc6/test.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ports/msvc6/test.c b/ports/msvc6/test.c index ea8b014..fa1568a 100644 --- a/ports/msvc6/test.c +++ b/ports/msvc6/test.c @@ -94,24 +94,24 @@ typedef struct _timers_infos { static timers_infos timers_table[] = { #if LWIP_TCP - { 0, TCP_FAST_INTERVAL, tcp_fasttmr}, - { 0, TCP_SLOW_INTERVAL, tcp_slowtmr}, + { 0, TCP_FAST_INTERVAL, tcp_fasttmr}, + { 0, TCP_SLOW_INTERVAL, tcp_slowtmr}, #endif /* LWIP_TCP */ #if LWIP_ARP - { 0, ARP_TMR_INTERVAL, etharp_tmr}, + { 0, ARP_TMR_INTERVAL, etharp_tmr}, #endif /* LWIP_ARP */ #if LWIP_DHCP - { 0, DHCP_FINE_TIMER_MSECS, dhcp_fine_tmr}, - { 0, ((DHCP_COARSE_TIMER_SECS)*1000)), dhcp_coarse_tmr}, + { 0, DHCP_FINE_TIMER_MSECS, dhcp_fine_tmr}, + { 0, DHCP_COARSE_TIMER_MSECS, dhcp_coarse_tmr}, #endif /* LWIP_DHCP */ #if IP_REASSEMBLY - { 0, IP_TMR_INTERVAL, ip_reass_tmr}, + { 0, IP_TMR_INTERVAL, ip_reass_tmr}, #endif /* IP_REASSEMBLY*/ #if LWIP_AUTOIP - { 0, AUTOIP_TMR_INTERVAL, autoip_tmr}, + { 0, AUTOIP_TMR_INTERVAL, autoip_tmr}, #endif /* LWIP_AUTOIP */ #if LWIP_IGMP - { 0, IGMP_TMR_INTERVAL, igmp_tmr}, + { 0, IGMP_TMR_INTERVAL, igmp_tmr}, #endif /* LWIP_IGMP */ };