Searched defs:TF_NODELAY (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dtcp.h190 #define TF_NODELAY ((u8_t)0x40U) /* Disable Nagle algorithm */ macro
342 #define tcp_nagle_disable(pcb) ((pcb)->flags |= TF_NODELAY)
343 #define tcp_nagle_enable(pcb) ((pcb)->flags &= ~TF_NODELAY)
344 #define tcp_nagle_disabled(pcb) (((pcb)->flags & TF_NODELAY) != 0)
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dtcp.h236 #define TF_NODELAY (u8_t)0x40U /* Disable Nagle algorithm */ macro
/vbox/src/VBox/Devices/Network/slirp/
H A Dtcp_var.h91 #define TF_NODELAY 0x0004 /* don't delay packets to coalesce */ macro

Completed in 57 milliseconds