Searched refs:tcp_clear_flags (Results 1 – 5 of 5) sorted by relevance
/third_party/lwip/src/include/lwip/ |
D | tcp.h | 433 #define tcp_clear_flags(pcb, clr_flags) do { (pcb)->flags = (tcpflags_t)((pcb)->flags & … macro 449 #define tcp_nagle_enable(pcb) tcp_clear_flags(pcb, TF_NODELAY)
|
/third_party/lwip/src/core/ |
D | tcp_in.c | 856 tcp_clear_flags(pcb, TF_ACK_DELAY); 1271 tcp_clear_flags(pcb, TF_INFR); 1361 tcp_clear_flags(pcb, TF_RTO); 1364 tcp_clear_flags(pcb, TF_RTO);
|
D | tcp.c | 483 tcp_clear_flags(pcb, TF_BACKLOGPEND); in tcp_backlog_accepted() 1675 tcp_clear_flags(pcb, TF_ACK_DELAY | TF_ACK_NOW); 1680 tcp_clear_flags(pcb, TF_CLOSEPEND); 1998 tcp_clear_flags(pcb, TF_CLOSEPEND);
|
D | tcp_out.c | 1384 tcp_clear_flags(pcb, TF_ACK_DELAY | TF_ACK_NOW); in tcp_output() 1431 tcp_clear_flags(pcb, TF_NAGLEMEMERR); in tcp_output() 2076 tcp_clear_flags(pcb, TF_ACK_DELAY | TF_ACK_NOW); in tcp_send_empty_ack()
|
/third_party/lwip/src/include/lwip/priv/ |
D | tcp_priv.h | 451 tcp_clear_flags(pcb, TF_ACK_DELAY); \
|