Home
last modified time | relevance | path

Searched refs:TF_NODELAY (Results 1 – 4 of 4) sorted by relevance

/third_party/lwip/src/include/lwip/
Dtcp.h258 #define TF_NODELAY 0x40U /* Disable Nagle algorithm */ macro
447 #define tcp_nagle_disable(pcb) tcp_set_flags(pcb, TF_NODELAY)
449 #define tcp_nagle_enable(pcb) tcp_clear_flags(pcb, TF_NODELAY)
451 #define tcp_nagle_disabled(pcb) tcp_is_flag_set(pcb, TF_NODELAY)
/third_party/lwip/src/include/lwip/priv/
Dtcp_priv.h101 ((tpcb)->flags & (TF_NODELAY | TF_INFR)) || \
/third_party/lwip/src/core/
Dtcp_out.c267 (!(pcb->flags & TF_NODELAY) && in tcp_pbuf_prealloc()
/third_party/lwip/
DCHANGELOG3377 and has to be explicitly disabled with 'tcp_pcb->flags |= TF_NODELAY'