We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c91eee commit 775eb9bCopy full SHA for 775eb9b
libraries/ESP8266WiFi/src/include/ClientContext.h
@@ -508,10 +508,11 @@ class ClientContext
508
}
509
510
511
- if (has_written && (_sync || tcp_nagle_disabled(_pcb)))
+ if (has_written)
512
{
513
- // handle no-Nagle manually because of TCP_WRITE_FLAG_MORE
514
// lwIP's tcp_output doc: "Find out what we can send and send it"
+ // *with respect to Nagle*
515
+ // more insights: https://lists.gnu.org/archive/html/lwip-users/2017-11/msg00134.html
516
tcp_output(_pcb);
517
518
0 commit comments