lwip-users archive search

Search String: Display: Description: Sort:

Results:

References: [ nagle: 244 ]

Total 244 documents matching your query.

81. Re: [lwip-users] lwip 2.0.2 tcp_output() problem (score: 3)
Author: HIDDEN
Date: Wed, 5 Apr 2017 15:14:43 +0200
1) You should *never* handle any other pcb than your own! Don't iterate tcp_active_pcbs! 2) You disabled nagle for the first pcb on the list, not necessarily the one you want. Simon Gesendet: Mittwoc
/archive/html/lwip-users/2017-04/msg00023.html (21,666 bytes)

82. Re: [lwip-users] Efficient sending small data packets (score: 3)
Author: HIDDEN
Date: Tue, 12 Nov 2013 19:34:26 +0000
The nagle algorithm can be disabled... Daniel --Original Message-- It worked but I noticed a relatively big latency (about 200ms or more) between arrival of buf_n and buf_n+1. Where does it come from
/archive/html/lwip-users/2013-11/msg00021.html (5,539 bytes)

83. Re: [lwip-users] With logs ... Re: Delayed Ack causing problems? Where to call tcp_nagle_disable()? (score: 3)
Author: HIDDEN
Date: Tue, 13 Sep 2011 15:12:18 +0100
Hi Simon, That would be excellent - and exactly the feedback I would look for. As stated previously, my intention is for these to be "reference" implementations, which is why I am using both the raw
/archive/html/lwip-users/2011-09/msg00170.html (9,884 bytes)

84. Re: [lwip-users] With logs ... Re: Delayed Ack causing problems? Where to call tcp_nagle_disable()? (score: 3)
Author: HIDDEN
Date: Tue, 13 Sep 2011 15:38:46 +0200
In fact, the lwipopts.h settings are the most interesting here. Would you mind sending your file (as attachment)? There are some things I don't (yet) understand in the traces (e.g. why does the clien
/archive/html/lwip-users/2011-09/msg00167.html (7,993 bytes)

85. [lwip-users] With logs ... Re: Delayed Ack causing problems? Where to call tcp_nagle_disable()? (score: 3)
Author: HIDDEN
Date: Mon, 12 Sep 2011 15:31:30 +0100
Hi Simon, et al, I have not got the Microblaze hardware out again, but I have tried the same code on an LPC1769 now, and get the same result. I had to change lwipopts.h slightly to reduce the RAM foo
/archive/html/lwip-users/2011-09/msg00165.html (10,582 bytes)

86. Re: [lwip-users] Delayed Ack causing problems? Where to call tcp_nagle_disable()? (score: 3)
Author: HIDDEN
Date: Fri, 09 Sep 2011 09:54:17 +0100
Hi Simon, Yes - the windows simulator does not really tell me anything about the timing of the TCP/IP applications, so I didn't recognise there was a problem when using the simulator. I only recognis
/archive/html/lwip-users/2011-09/msg00141.html (8,516 bytes)

87. Re: [lwip-users] Delayed Ack causing problems? Where to call tcp_nagle_disable()? (score: 3)
Author: HIDDEN
Date: Mon, 22 Aug 2011 19:40:19 +0200
Felipe de Andrade Neves L. wrote: May I ask something, how came the Nagle's algorithm has caused the problem, as it is suppose to group small data until receive the next ack, but the JPG has lots of
/archive/html/lwip-users/2011-08/msg00094.html (6,414 bytes)

88. Re: [lwip-users] Delayed Ack causing problems? Where to call tcp_nagle_disable()? (score: 3)
Author: HIDDEN
Date: Mon, 22 Aug 2011 19:38:13 +0200
You are allowed to disable/enable the nagle algorithm where you like, but if you want to do so before sending the first segment, any place of these is equally good: - at initialization time (as you d
/archive/html/lwip-users/2011-08/msg00093.html (8,972 bytes)

89. Re: [lwip-users] Delayed Ack causing problems? Where to call tcp_nagle_disable()? (score: 3)
Author: HIDDEN
Date: Sat, 6 Aug 2011 20:40:30 -0300
Richard, excellent information you've provided.  May I ask something, how came the Nagle's algorithm has caused the problem, as it is suppose to group small data until receive the next ack, but the
/archive/html/lwip-users/2011-08/msg00041.html (9,723 bytes)

90. Re: [lwip-users] netconn_write, "Flush" functionality (score: 3)
Author: HIDDEN
Date: Tue, 14 Jun 2011 14:25:33 +0200
This is a *very* bad example since you are accessing internals of the stack. Please use this code instead: tcp_nagle_enable(xNewConn->pcb.tcp); The tcp_nagle_*() functions were added in 1.4.0 only (I
/archive/html/lwip-users/2011-06/msg00027.html (5,757 bytes)

91. RE: [lwip-users] enqueing problem (score: 3)
Author: HIDDEN
Date: Mon, 28 Mar 2011 09:52:27 +0100
I think there's a little confusion here. Simon said "The only thing changed by disabling nagle is that tcp_output always sends everything that is enqueued." but this isn't quite right. Disabling Nagl
/archive/html/lwip-users/2011-03/msg00130.html (5,518 bytes)

92. [lwip-users] enqueing problem (score: 3)
Author: HIDDEN
Date: Sun, 27 Mar 2011 15:05:56 +0200
Hi all, I have a problem that I have seen lots or users straggling with, but without any real solution. I am trying to send data in a loop. I have triad closing NAGLE as follows: // this should shut
/archive/html/lwip-users/2011-03/msg00126.html (8,405 bytes)

93. [lwip-users] RE: Fast Response TCP Connection (score: 3)
Author: HIDDEN
Date: Tue, 8 Mar 2011 08:51:30 +0000
Hi Tim, Have you tried disabling the Nagle algorithm? I had a similar issue as I am only sending small packets of data. Once I had disabled the Nagle algorithm responses to the client were much faste
/archive/html/lwip-users/2011-03/msg00038.html (10,819 bytes)

94. [lwip-users] Re: lwip-users Digest, Vol 87, Issue 27 (score: 3)
Author: HIDDEN
Date: Tue, 23 Nov 2010 12:47:01 -0500
Kieran, thanks for the reply I can't find TCP_SND_WND in lwipopts.h (see attachment) Nagle's algorithm shouldn't affect my application since I am always sending 1200 bytes data all the time. On Mon,
/archive/html/lwip-users/2010-11/msg00091.html (36,197 bytes)

95. [lwip-users] Re: advice on recovery on a socket send error using (score: 3)
Author: HIDDEN
Date: Thu, 19 Aug 2010 17:36:37 -0400
<SNIP> This all seems a little confused. You're trying to close a data PCB but then to re-open it you're creating a listening PCB. Do you not still have the bound listening PCB from when you first ac
/archive/html/lwip-users/2010-08/msg00062.html (10,509 bytes)

96. [lwip-users] questions on lwip (two TCP/IP sockets) (score: 3)
Author: HIDDEN
Date: Wed, 11 Aug 2010 10:02:40 -0400
I have some questions about using lwip but first some background. I am using a Stellaris 9b92 eval board and want to create two sockets (servers) to listen on two different ports and each port can se
/archive/html/lwip-users/2010-08/msg00028.html (80,943 bytes)

97. Re: [lwip-users] tcp_output does not flush (score: 3)
Author: HIDDEN
Date: Tue, 04 May 2010 16:45:50 +0100
Nagle's algorithm and the delayed ACK algorithm were both developed at around the same time, and interact badly. There are ways to work around this, but none of them are perfect. Kieran
/archive/html/lwip-users/2010-05/msg00020.html (4,925 bytes)

98. Re: [lwip-users] lwIP malloc fail (score: 3)
Author: HIDDEN
Date: Wed, 7 Apr 2010 14:31:27 -0300
Kieran, Thanks for the valuable informations! I ran my program and looked for the ACKs. I observed that in the correct part of my program (the HTTP server) all packages are alwayes acked, but when I
/archive/html/lwip-users/2010-04/msg00016.html (9,597 bytes)

99. Re: [lwip-users] lwIP malloc fail (score: 3)
Author: HIDDEN
Date: Wed, 7 Apr 2010 16:58:07 +0100
TCP won't free the segments until it has finished with them, which means waiting for an ACK from the other end. This could take some time. You should be able to disable Nagle's algorithm, and so avoi
/archive/html/lwip-users/2010-04/msg00013.html (6,573 bytes)

100. Re: [lwip-users] HTTP server help needed (score: 3)
Author: HIDDEN
Date: Wed, 7 Apr 2010 09:09:54 -0300
Hi Stojan, No, I created my own HTTP handler code, but I have an example of one made by Luminary Micro. My version is much more simple. I just process the HTTP packeges in tcp_recv callback function.
/archive/html/lwip-users/2010-04/msg00012.html (10,445 bytes)


This search system is powered by Namazu