From 40abd148841120803c1467f31cb99149e1a6283d Mon Sep 17 00:00:00 2001 From: kieranm Date: Thu, 5 Dec 2002 09:52:59 +0000 Subject: [PATCH] Make tmr in tcp_pcb u32_t to ensure it wraps at the same time as tcp_ticks (Bug #1838) --- src/include/lwip/tcp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lwip/tcp.h b/src/include/lwip/tcp.h index 5f2bc534..24054c4f 100644 --- a/src/include/lwip/tcp.h +++ b/src/include/lwip/tcp.h @@ -213,7 +213,7 @@ struct tcp_pcb { enum tcp_state state; /* TCP state */ /* Timers */ - u16_t tmr; + u32_t tmr; u8_t polltmr, pollinterval; /* Retransmission timer. */