Home
last modified time | relevance | path

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

/external/syslinux/core/lwip/src/include/lwip/
Dtcp.h185 #define TF_NODELAY ((u8_t)0x40U) /* Disable Nagle algorithm */ macro
326 #define tcp_nagle_disable(pcb) ((pcb)->flags |= TF_NODELAY)
327 #define tcp_nagle_enable(pcb) ((pcb)->flags &= ~TF_NODELAY)
328 #define tcp_nagle_disabled(pcb) (((pcb)->flags & TF_NODELAY) != 0)
Dtcp_impl.h85 ((tpcb)->flags & (TF_NODELAY | TF_INFR)) || \
/external/syslinux/core/lwip/src/core/
Dtcp_out.c244 (!(pcb->flags & TF_NODELAY) && in tcp_pbuf_prealloc()
/external/syslinux/core/lwip/
DCHANGELOG1879 and has to be explicitly disabled with 'tcp_pcb->flags |= TF_NODELAY'