Browse Source

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...

STABLE-2_1_x
jani 24 years ago
parent
commit
2bba9bcd9f
  1. 2
      src/include/lwip/tcp.h

2
src/include/lwip/tcp.h

@ -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 */

Loading…
Cancel
Save