lwip-users
[Top][All Lists]
Advanced

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

Re: [lwip-users] Patch #1326 breaks TCP


From: Leon Woestenberg
Subject: Re: [lwip-users] Patch #1326 breaks TCP
Date: Thu, 16 Oct 2003 23:32:55 +0200

Karl wrote:

> ... and I've just tried this, and it does indeed make things work
> again. Just need to check that pcb->unacked isn't NULL to start
> with, so line 372 should be changed to:
>
>   /* useg should point to last segment on unacked queue */
>   useg = pcb->unacked;
>   if (useg != NULL) {
>     for (useg = pcb->unacked; useg->next != NULL; useg = useg->next);
>   }
>

Thanks for that fix Karl! Will check it in tomorrow if no-one else did
already.

I think the the first assignment in the for() is redundant and can be left
out.

Regards,

Leon.





reply via email to

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