lwip-devel
[Top][All Lists]
Advanced

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

[lwip-devel] [bug #21181] Initial congestion window


From: Oleg Tyshev
Subject: [lwip-devel] [bug #21181] Initial congestion window
Date: Fri, 28 Sep 2007 12:46:40 +0000
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.7) Gecko/20070914 Firefox/2.0.0.7

URL:
  <http://savannah.nongnu.org/bugs/?21181>

                 Summary: Initial congestion window
                 Project: lwIP - A Lightweight TCP/IP stack
            Submitted by: olegreen
            Submitted on: Friday 09/28/2007 at 12:46
                Category: TCP
                Severity: 3 - Normal
              Item Group: Faulty Behaviour
                  Status: None
                 Privacy: Public
             Assigned to: None
             Open/Closed: Open
         Discussion Lock: Any
         Planned Release: 

    _______________________________________________________

Details:

If we see tcp_process() function

  switch (pcb->state) {
  case SYN_SENT:

....
      pcb->cwnd = pcb->mss;
....
      tcp_parseopt(pcb);

tcp_parseopt() sets pcb->mss to the new value.
I think the order should be reversed.

      tcp_parseopt(pcb);
....
      pcb->cwnd = pcb->mss;





    _______________________________________________________

Reply to this item at:

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

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





reply via email to

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