2007-12-20 Kieran Mansley (based on patch from Per-Henrik Lundbolm)

* tcp.c, tcp_in.c, tcp_out.c, tcp.h: fix bug #20199 (better handling
    of silly window avoidance and prevent lwIP from shrinking the window)
This commit is contained in:
kieranm
2007-12-20 14:51:35 +00:00
parent fc2d28b851
commit 8cc32bc29c
5 changed files with 44 additions and 29 deletions

View File

@@ -281,7 +281,8 @@ struct tcp_pcb {
/* receiver variables */
u32_t rcv_nxt; /* next seqno expected */
u16_t rcv_wnd; /* receiver window */
u16_t rcv_ann_wnd; /* announced receive window */
/* Timers */
u32_t tmr;
u8_t polltmr, pollinterval;