lwip-users
[Top][All Lists]
Advanced

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

Re: [lwip-users] keep-alive not work


From: Bandu
Subject: Re: [lwip-users] keep-alive not work
Date: Wed, 18 Feb 2009 12:01:35 +0000


So suggested fix will be like,
 
tcphdr->ackno = htonl(pcb->rcv_nxt);
 TCPH_FLAGS_SET(tcphdr, TCP_ACK);
 tcphdr->wnd = htons(pcb->rcv_ann_wnd) ;
 tcphdr->urgp = 0;
 
right?
On Wed, Feb 18, 2009 at 11:47 AM, Kieran Mansley <address@hidden> wrote:
On Wed, 2009-02-18 at 12:38 +0100, Simon Goldschmidt wrote:
> >   tcphdr->wnd = htons(pcb->rcv_ann_wnd) + 1;
>
> I'm not sure, but shouldn't that be
>
> tcphdr->wnd = htons(pcb->rcv_ann_wnd + 1);

Of course, you are right, thank you Simon.

Kieran



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



--
Bandu
address@hidden

reply via email to

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