Searched refs:TCP_ACK (Results 1 – 8 of 8) sorted by relevance
/third_party/lwip/test/unit/tcp/ |
D | test_tcp_oos.c | 183 pinseq = tcp_create_rx_segment(pcb, &data[0], 4, 0, 0, TCP_ACK); in START_TEST() 186 p_8_9 = tcp_create_rx_segment(pcb, &data[8], 8, 8, 0, TCP_ACK|TCP_FIN); in START_TEST() 189 p_4_8 = tcp_create_rx_segment(pcb, &data[4], 8, 4, 0, TCP_ACK); in START_TEST() 192 p_4_10 = tcp_create_rx_segment(pcb, &data[4], 10, 4, 0, TCP_ACK); in START_TEST() 195 p_2_14 = tcp_create_rx_segment(pcb, &data[2], 14, 2, 0, TCP_ACK); in START_TEST() 197 p_fin = tcp_create_rx_segment(pcb, NULL, 0,16, 0, TCP_ACK|TCP_FIN); in START_TEST() 320 p_1_2 = tcp_create_rx_segment(pcb, &data[1], 2, 1, 0, TCP_ACK); in START_TEST() 323 p_4_8 = tcp_create_rx_segment(pcb, &data[4], 8, 4, 0, TCP_ACK); in START_TEST() 326 p_3_11 = tcp_create_rx_segment(pcb, &data[3], 11, 3, 0, TCP_ACK); in START_TEST() 329 p_2_12 = tcp_create_rx_segment(pcb, &data[2], 12, 2, 0, TCP_ACK); in START_TEST() [all …]
|
D | test_tcp.c | 482 p = tcp_create_rx_segment(pcb, NULL, 0, 0, 4, TCP_ACK); in START_TEST() 496 p = tcp_create_rx_segment(pcb, NULL, 0, 0, 0, TCP_ACK); in START_TEST() 511 p = tcp_create_rx_segment(pcb, NULL, 0, 0, 0, TCP_ACK); in START_TEST() 520 p = tcp_create_rx_segment(pcb, NULL, 0, 0, 0, TCP_ACK); in START_TEST() 573 p = tcp_create_rx_segment(pcb, NULL, 0, 0, 12, TCP_ACK); in START_TEST() 675 p = tcp_create_rx_segment(pcb, NULL, 0, 0, TCP_MSS, TCP_ACK); in START_TEST() 688 p = tcp_create_rx_segment(pcb, NULL, 0, 0, 0, TCP_ACK); in START_TEST() 692 p = tcp_create_rx_segment(pcb, NULL, 0, 0, 0, TCP_ACK); in START_TEST() 697 p = tcp_create_rx_segment(pcb, NULL, 0, 0, 0, TCP_ACK); in START_TEST() 853 p = tcp_create_rx_segment(pcb, NULL, 0, 0, 0, TCP_ACK); in test_tcp_tx_full_window_lost() [all …]
|
/third_party/lwip/src/core/ |
D | tcp_in.c | 645 if (flags & TCP_ACK) { 719 rc = tcp_enqueue_flags(npcb, TCP_SYN | TCP_ACK); 859 if ((flags & TCP_ACK) && (flags & TCP_SYN) 910 else if (flags & TCP_ACK) { 924 if (flags & TCP_ACK) { 992 if ((flags & TCP_ACK) && (ackno == pcb->snd_nxt) && 1005 } else if ((flags & TCP_ACK) && (ackno == pcb->snd_nxt) && 1023 if ((flags & TCP_ACK) && ackno == pcb->snd_nxt && pcb->unsent == NULL) { 1033 if ((flags & TCP_ACK) && ackno == pcb->snd_nxt && pcb->unsent == NULL) { 1151 if (flags & TCP_ACK) {
|
D | tcp_out.c | 1358 TCPH_SET_FLAG(seg->tcphdr, TCP_ACK); in tcp_output() 1862 seqno_be, pcb->local_port, pcb->remote_port, TCP_ACK, in tcp_output_alloc_header() 2001 remote_port, TCP_RST | TCP_ACK, wnd); in tcp_rst() 2167 TCPH_FLAGS_SET(tcphdr, TCP_ACK | TCP_FIN); in tcp_zero_window_probe()
|
D | tcp.c | 2470 if (flags & TCP_ACK) { in tcp_debug_print_flags()
|
/third_party/lwip/src/include/lwip/prot/ |
D | tcp.h | 76 #define TCP_ACK 0x10U macro
|
/third_party/lwip/src/netif/ppp/ |
D | vj.c | 191 if ((TCPH_FLAGS(th) & (TCP_SYN|TCP_FIN|TCP_RST|TCP_ACK)) != TCP_ACK) { in vj_compress_tcp()
|
/third_party/lwip/ |
D | CHANGELOG | 2581 * tcp_out.c: set TCP_ACK flag on keepalive and zero window probes
|