[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [lwip-users] TCP transmittion slow down after some time
From: |
Kieran Mansley |
Subject: |
Re: [lwip-users] TCP transmittion slow down after some time |
Date: |
Thu, 28 Jan 2010 13:15:09 +0000 |
On Thu, 2010-01-28 at 13:09 +0000, Kieran Mansley wrote:
> On Tue, 2010-01-26 at 16:50 -0800, kanprin wrote:
> > but in tcp.c line 653, it is
> > "if (pcb->ssthresh < pcb->mss) {
> > "
> > must it be the same as that used in tcp_rexmit_fast())?
>
> Yes, I think the line in tcp.c should be
> if (pcb->ssthresh < (pcb->mss * 2))
I've checked this change in.
Thanks
Kieran