lwip-devel
[Top][All Lists]
Advanced

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

[lwip-devel] [bug #27445] PCB hangs in Fast Retransmit due to unchanging


From: Oleg Tyshev
Subject: [lwip-devel] [bug #27445] PCB hangs in Fast Retransmit due to unchanging cwnd
Date: Thu, 29 Oct 2009 10:32:52 +0000
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.4) Gecko/20091016 Firefox/3.5.4 GTB5

Follow-up Comment #10, bug #27445 (project lwip):

Kieran, patch works fine.
But why increment of dupack and reset of dupack are in different places?
In this case we have small overhead:
 at first increment and than reset.

It could be better:
if (pcb->unacked == NULL && pcb->unsent == NULL) {
  pcb->dupacks = 0;
}
else {
  ++pcb->dupacks;
}


    _______________________________________________________

Reply to this item at:

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

_______________________________________________
  Message sent via/by Savannah
  http://savannah.nongnu.org/





reply via email to

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