TF_NODELAY is only used within LwIP.
 
Symbols
loading...
Files
loading...

TF_NODELAY macro

Syntax

#define TF_NODELAY 0x40U

References

LocationText
tcp.h:258
#define TF_NODELAY 0x40U /* Disable Nagle algorithm */
tcp.h:438
#define tcp_nagle_disable(pcb) tcp_set_flags(pcb, TF_NODELAY)
tcp.h:440
#define tcp_nagle_enable(pcb) tcp_clear_flags(pcb, TF_NODELAY)
tcp.h:442
#define tcp_nagle_disabled(pcb) tcp_is_flag_set(pcb, TF_NODELAY)
tcp_out.c:255
(!(pcb->flags & TF_NODELAY) &&
tcp_priv.h:101
((tpcb)->flags & (TF_NODELAY | TF_INFR)) || \