make rtime field u16_t like rto otherwise it won't catch rto if that goes beyond 255.When that happens there's trouble already since 255 ticks is over 2 minutes but still...

This commit is contained in:
jani 2003-01-10 15:46:58 +00:00
parent 4eebbdea0d
commit 2bba9bcd9f

View File

@ -217,7 +217,7 @@ struct tcp_pcb {
u8_t polltmr, pollinterval;
/* Retransmission timer. */
u8_t rtime;
u16_t rtime;
u16_t mss; /* maximum segment size */