lwip-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[lwip-devel] [bug #27783] Silly window avoidance for small window sizes


From: Simon Goldschmidt
Subject: [lwip-devel] [bug #27783] Silly window avoidance for small window sizes
Date: Fri, 23 Oct 2009 07:12:02 +0000
User-agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3

Follow-up Comment #1, bug #27783 (project lwip):

As was written in bug #27771, to achieve this, the first if-statement in
tcp_update_rcv_ann_wnd() should be changed from

if (TCP_SEQ_GEQ(new_right_edge, pcb->rcv_ann_right_edge + pcb->mss))

to

if (TCP_SEQ_GEQ(new_right_edge, pcb->rcv_ann_right_edge + LWIP_MIN((TCP_WND /
2), pcb->mss)))

I've just tested it and it is working fine.

    _______________________________________________________

Reply to this item at:

  <http://savannah.nongnu.org/bugs/?27783>

_______________________________________________
  Nachricht geschickt von/durch Savannah
  http://savannah.nongnu.org/





reply via email to

[Prev in Thread] Current Thread [Next in Thread]