Home
last modified time | relevance | path

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

/lib/liblwip/src/include/lwip/
Dtcp_impl.h84 #define tcp_do_output_nagle(tpcb) ((((tpcb)->unacked == NULL) || \ macro
90 #define tcp_output_nagle(tpcb) (tcp_do_output_nagle(tpcb) ? tcp_output(tpcb) : ERR_OK)
/lib/liblwip/src/core/
Dtcp_out.c973 if((tcp_do_output_nagle(pcb) == 0) && in tcp_output()