Searched refs:tcp_do_output_nagle (Results 1 – 5 of 5) sorted by relevance
153 + 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
17 #define tcp_output_nagle(tpcb) (tcp_do_output_nagle(tpcb) ? tcp_output(tpcb) : ERR_OK)
249 + if ((tcp_do_output_nagle(pcb) == 0) && ((pcb->flags & (TF_NAGLEMEMERR | TF_FIN)) == 0)) {
100 #define tcp_do_output_nagle(tpcb) ((((tpcb)->unacked == NULL) || \ macro106 #define tcp_output_nagle(tpcb) (tcp_do_output_nagle(tpcb) ? tcp_output(tpcb) : ERR_OK)
1356 if ((tcp_do_output_nagle(pcb) == 0) && in tcp_output()