Searched refs:rcv_nxt (Results 1 – 6 of 6) sorted by relevance
| /lib/liblwip/src/core/ |
| D | tcp_in.c | 484 npcb->rcv_nxt = seqno + 1; in tcp_listen_input() 485 npcb->rcv_ann_right_edge = npcb->rcv_nxt; in tcp_listen_input() 543 if (TCP_SEQ_BETWEEN(seqno, pcb->rcv_nxt, pcb->rcv_nxt+pcb->rcv_wnd)) { in tcp_timewait_input() 591 if (TCP_SEQ_BETWEEN(seqno, pcb->rcv_nxt, in tcp_process() 592 pcb->rcv_nxt+pcb->rcv_wnd)) { in tcp_process() 605 seqno, pcb->rcv_nxt)); in tcp_process() 607 seqno, pcb->rcv_nxt)); in tcp_process() 635 pcb->rcv_nxt = seqno + 1; in tcp_process() 636 pcb->rcv_ann_right_edge = pcb->rcv_nxt; in tcp_process() 725 } else if ((flags & TCP_SYN) && (seqno == pcb->rcv_nxt - 1)) { in tcp_process() [all …]
|
| D | tcp.c | 182 tcp_rst(pcb->snd_nxt, pcb->rcv_nxt, &pcb->local_ip, &pcb->remote_ip, in tcp_close_shutdown() 376 ackno = pcb->rcv_nxt; in tcp_abandon() 581 u32_t new_right_edge = pcb->rcv_nxt + pcb->rcv_wnd; in tcp_update_rcv_ann_wnd() 588 if (TCP_SEQ_GT(pcb->rcv_nxt, pcb->rcv_ann_right_edge)) { in tcp_update_rcv_ann_wnd() 594 u32_t new_rcv_ann_wnd = pcb->rcv_ann_right_edge - pcb->rcv_nxt; in tcp_update_rcv_ann_wnd() 742 pcb->rcv_nxt = 0; in tcp_connect() 748 pcb->rcv_ann_right_edge = pcb->rcv_nxt; in tcp_connect() 963 tcp_rst(pcb->snd_nxt, pcb->rcv_nxt, &pcb->local_ip, &pcb->remote_ip, in tcp_slowtmr() 1704 pcb->snd_nxt, pcb->rcv_nxt)); in tcp_debug_print_pcbs() 1711 pcb->snd_nxt, pcb->rcv_nxt)); in tcp_debug_print_pcbs() [all …]
|
| D | tcp_out.c | 106 tcphdr->ackno = htonl(pcb->rcv_nxt); in tcp_output_alloc_header() 113 pcb->rcv_ann_right_edge = pcb->rcv_nxt + pcb->rcv_ann_wnd; in tcp_output_alloc_header() 861 ("tcp_output: sending ACK for %"U32_F"\n", pcb->rcv_nxt)); in tcp_send_empty_ack() 867 pcb->ts_lastacksent = pcb->rcv_nxt; in tcp_send_empty_ack() 1060 seg->tcphdr->ackno = htonl(pcb->rcv_nxt); in tcp_output_segment() 1065 pcb->rcv_ann_right_edge = pcb->rcv_nxt + pcb->rcv_ann_wnd; in tcp_output_segment() 1081 pcb->ts_lastacksent = pcb->rcv_nxt; in tcp_output_segment() 1401 pcb->snd_nxt - 1, pcb->rcv_nxt)); in tcp_keepalive() 1483 pcb->snd_nxt - 1, pcb->rcv_nxt)); in tcp_zero_window_probe()
|
| /lib/liblwip/test/unit/tcp/ |
| D | tcp_helper.c | 122 data, data_len, pcb->rcv_nxt + seqno_offset, pcb->lastack + ackno_offset, headerflags); in tcp_create_rx_segment() 134 data, data_len, pcb->rcv_nxt + seqno_offset, pcb->lastack + ackno_offset, headerflags, wnd); in tcp_create_rx_segment_wnd()
|
| D | test_tcp_oos.c | 483 pcb->rcv_nxt = 0x8000; in START_TEST() 573 pcb->rcv_nxt = 0x8000; in START_TEST() 652 pcb->rcv_nxt = 0x8000; in START_TEST() 754 pcb->rcv_nxt = 0x8000; in test_tcp_recv_ooseq_double_FINs()
|
| /lib/liblwip/src/include/lwip/ |
| D | tcp.h | 196 u32_t rcv_nxt; /* next seqno expected */ member
|