lwip-users
[Top][All Lists]
Advanced

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

Re: [lwip-users] RFC: lwIP release 1.1.0 Release Candidate 1 (tag: STABL


From: Bill Knight
Subject: Re: [lwip-users] RFC: lwIP release 1.1.0 Release Candidate 1 (tag: STABLE-1_1_0-RC1)
Date: Thu, 14 Oct 2004 07:13:56 -0500

Leon
Reverting to the original code as shown in your post below works.
However I ended up changing the MACRO in the .h file to

#define TCP_SEQ_BETWEEN(a,b,c) (TCP_SEQ_GEQ(a,b) && TCP_SEQ_LEQ(a,c))

which also works.  So the choice is yours.

-Bill


On Thu, 14 Oct 2004 14:05:56 +0200, Leon Woestenberg wrote:

>Hello Bill,

>working through your bug reports on Savannah.

>On Thu, 2004-10-14 at 13:45, Bill Knight wrote:
>> Leon
>>   I have two changes that are needed to allow my ARM7TDMI versions
>> to work.  Both have been submitted to the bug list - #10547 & #10548.
>> Both have simple fixes/work-arounds which are described in the bug
>> reports.  I hope they can be included in any upcoming, new releases.
>> 

>Just double-checking with you Bill:

>For bug #10548, converting back to the old macro's works for you, and
>still is the most viable solution?


>while (pcb->unsent != NULL &&
>TCP_SEQ_LEQ(ntohl(pcb->unsent->tcphdr->seqno) + 
>TCP_TCPLEN(pcb->unsent), ackno) &&
>TCP_SEQ_LEQ(ackno, pcb->snd_max)

>/*TCP_SEQ_BETWEEN(ackno,
>ntohl(pcb->unsent->tcphdr->seqno) +
>TCP_TCPLEN(pcb->unsent), pcb->snd_max)*/



>Regards,

>Leon.



>_______________________________________________
>lwip-users mailing list
>address@hidden
>http://lists.nongnu.org/mailman/listinfo/lwip-users







reply via email to

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