Home
last modified time | relevance | path

Searched refs:tcp_do_output_nagle (Results 1 – 5 of 5) sorted by relevance

/third_party/lwip/
D0056-fix-tso-small-packet-drop-in-kernel-server.patch153 + if ((tcp_do_output_nagle(pcb) == 0) &&
179 - if ((tcp_do_output_nagle(pcb) == 0) && ((pcb->flags & (TF_NAGLEMEMERR | TF_FIN)) == 0)) {
184 + // tcp_do_output_nagle, break
Dbackport-tcp-fix-sequence-number-comparison.patch17 #define tcp_output_nagle(tpcb) (tcp_do_output_nagle(tpcb) ? tcp_output(tpcb) : ERR_OK)
D0038-add-tso.patch249 + if ((tcp_do_output_nagle(pcb) == 0) && ((pcb->flags & (TF_NAGLEMEMERR | TF_FIN)) == 0)) {
/third_party/lwip/src/include/lwip/priv/
Dtcp_priv.h100 #define tcp_do_output_nagle(tpcb) ((((tpcb)->unacked == NULL) || \ macro
106 #define tcp_output_nagle(tpcb) (tcp_do_output_nagle(tpcb) ? tcp_output(tpcb) : ERR_OK)
/third_party/lwip/src/core/
Dtcp_out.c1356 if ((tcp_do_output_nagle(pcb) == 0) && in tcp_output()