Home
last modified time | relevance | path

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

/lib/liblwip/src/include/lwip/
Dtcp.h184 #define TF_NODELAY ((u8_t)0x40U) /* Disable Nagle algorithm */ macro
328 #define tcp_nagle_disable(pcb) ((pcb)->flags |= TF_NODELAY)
329 #define tcp_nagle_enable(pcb) ((pcb)->flags &= ~TF_NODELAY)
330 #define tcp_nagle_disabled(pcb) (((pcb)->flags & TF_NODELAY) != 0)
Dtcp_impl.h85 ((tpcb)->flags & (TF_NODELAY | TF_INFR)) || \
/lib/liblwip/src/core/
Dtcp_out.c247 (!(pcb->flags & TF_NODELAY) && in tcp_pbuf_prealloc()
/lib/liblwip/
DCHANGELOG2178 and has to be explicitly disabled with 'tcp_pcb->flags |= TF_NODELAY'