/third_party/lwip/src/core/ |
D | tcp_in.c | 704 npcb->rcv_nxt = seqno + 1; 705 npcb->rcv_ann_right_edge = npcb->rcv_nxt; 783 if (TCP_SEQ_BETWEEN(seqno, pcb->rcv_nxt, pcb->rcv_nxt + pcb->rcv_wnd)) { 840 if (seqno == pcb->rcv_nxt) { 842 } else if (TCP_SEQ_BETWEEN(seqno, pcb->rcv_nxt, 843 pcb->rcv_nxt + pcb->rcv_wnd)) { 860 seqno, pcb->rcv_nxt)); 862 seqno, pcb->rcv_nxt)); 891 pcb->rcv_nxt = seqno + 1; 892 pcb->rcv_ann_right_edge = pcb->rcv_nxt; [all …]
|
D | tcp.c | 518 tcp_rst(pcb, pcb->snd_nxt, pcb->rcv_nxt, &pcb->local_ip, &pcb->remote_ip, in tcp_close_shutdown() 747 ackno = pcb->rcv_nxt; in tcp_abandon() 1101 new_right_edge = pcb->rcv_nxt + pcb->rcv_wnd; 1108 if (TCP_SEQ_GT(pcb->rcv_nxt, pcb->rcv_ann_right_edge)) { 1114 u32_t new_rcv_ann_wnd = pcb->rcv_ann_right_edge - pcb->rcv_nxt; 1323 pcb->rcv_nxt = 0; 1331 pcb->rcv_ann_right_edge = pcb->rcv_nxt; 1576 tcp_rst(pcb, pcb->snd_nxt, pcb->rcv_nxt, &pcb->local_ip, &pcb->remote_ip, 2675 pcb->snd_nxt, pcb->rcv_nxt)); 2689 pcb->snd_nxt, pcb->rcv_nxt));
|
D | tcp_out.c | 1490 seg->tcphdr->ackno = lwip_htonl(pcb->rcv_nxt); in tcp_output_segment() 1504 pcb->rcv_ann_right_edge = pcb->rcv_nxt + pcb->rcv_ann_wnd; in tcp_output_segment() 1521 pcb->ts_lastacksent = pcb->rcv_nxt; in tcp_output_segment() 1873 p = tcp_output_alloc_header_common(pcb->rcv_nxt, optlen, datalen, in tcp_output_alloc_header() 1878 pcb->rcv_ann_right_edge = pcb->rcv_nxt + pcb->rcv_ann_wnd; in tcp_output_alloc_header() 2065 pcb->ts_lastacksent = pcb->rcv_nxt; in tcp_send_empty_ack() 2069 ("tcp_output: sending ACK for %"U32_F"\n", pcb->rcv_nxt)); in tcp_send_empty_ack() 2116 pcb->snd_nxt - 1, pcb->rcv_nxt, (int)err)); in tcp_keepalive() 2200 pcb->snd_nxt - 1, pcb->rcv_nxt, (int)err)); in tcp_zero_window_probe()
|
/third_party/lwip/ |
D | backport-tcp-tighten-up-checks-for-received-SYN.patch | 39 + if (seqno == pcb->rcv_nxt - 1) { 51 - } else if ((flags & TCP_SYN) && (seqno == pcb->rcv_nxt - 1)) {
|
D | 0085-add-lwip-log-tcp_rst-tcp_abandon-tcp_abort.patch | 23 tcp_rst(pcb, pcb->snd_nxt, pcb->rcv_nxt, &pcb->local_ip, &pcb->remote_ip, 43 tcp_rst(pcb, pcb->snd_nxt, pcb->rcv_nxt, &pcb->local_ip, &pcb->remote_ip, 136 if (TCP_SEQ_BETWEEN(seqno, pcb->rcv_nxt, pcb->rcv_nxt + pcb->rcv_wnd)) {
|
D | 0091-add-fd-log-info-and-fix-wrong-port-log-info.patch | 51 if (TCP_SEQ_BETWEEN(seqno, pcb->rcv_nxt, pcb->rcv_nxt + pcb->rcv_wnd)) {
|
D | 0030-refactor-tcp-new-port.patch | 146 pcb->rcv_nxt = 0;
|
D | 0057-same-node-gazellectl-a.patch | 239 pcb->rcv_nxt = 0;
|
D | 0002-adapt-lstack.patch | 2472 pcb->rcv_nxt = 0; 2510 tcp_rst(pcb, pcb->snd_nxt, pcb->rcv_nxt, &pcb->local_ip, &pcb->remote_ip, 2860 pcb->rcv_nxt = seqno + 1; 2861 pcb->rcv_ann_right_edge = pcb->rcv_nxt;
|
/third_party/lwip/test/unit/tcp/ |
D | test_tcp_oos.c | 486 pcb->rcv_nxt = 0x8000; in START_TEST() 573 pcb->rcv_nxt = 0xffffffff - (TCP_WND / 2); in START_TEST() 659 pcb->rcv_nxt = 0x8000; in START_TEST() 734 pcb->rcv_nxt = 0x8000; in START_TEST() 831 pcb->rcv_nxt = 0x8000; in test_tcp_recv_ooseq_double_FINs()
|
D | tcp_helper.c | 129 data, data_len, pcb->rcv_nxt + seqno_offset, pcb->lastack + ackno_offset, headerflags); in tcp_create_rx_segment() 141 data, data_len, pcb->rcv_nxt + seqno_offset, pcb->lastack + ackno_offset, headerflags, wnd); in tcp_create_rx_segment_wnd()
|
/third_party/lwip/src/include/lwip/ |
D | tcp.h | 283 u32_t rcv_nxt; /* next seqno expected */ member
|
/third_party/libbpf/include/uapi/linux/ |
D | bpf.h | 6237 __u32 rcv_nxt; /* What we want to receive next */ member 6659 __u32 rcv_nxt; member
|
/third_party/libbpf/src/ |
D | bpf_helper_defs.h | 2878 static long (*bpf_tcp_send_ack)(void *tp, __u32 rcv_nxt) = (void *) 116;
|
/third_party/lwip/test/unit/api/ |
D | test_sockets.c | 781 tcp_rst(pcb, pcb->snd_nxt, pcb->rcv_nxt, &pcb->local_ip, &pcb->remote_ip, in START_TEST()
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 37986 __u32 rcv_nxt; member 76034 u32 rcv_nxt; member 76278 u32 rcv_nxt; member 77585 __u32 rcv_nxt; member
|