Searched refs:rcv_nxt (Results 1 – 4 of 4) sorted by relevance
/external/syslinux/core/lwip/src/core/ |
D | tcp_in.c | 482 npcb->rcv_nxt = seqno + 1; in tcp_listen_input() 483 npcb->rcv_ann_right_edge = npcb->rcv_nxt; in tcp_listen_input() 540 if (TCP_SEQ_BETWEEN(seqno, pcb->rcv_nxt, pcb->rcv_nxt+pcb->rcv_wnd)) { in tcp_timewait_input() 588 if (TCP_SEQ_BETWEEN(seqno, pcb->rcv_nxt, in tcp_process() 589 pcb->rcv_nxt+pcb->rcv_wnd)) { in tcp_process() 602 seqno, pcb->rcv_nxt)); in tcp_process() 604 seqno, pcb->rcv_nxt)); in tcp_process() 632 pcb->rcv_nxt = seqno + 1; in tcp_process() 633 pcb->rcv_ann_right_edge = pcb->rcv_nxt; in tcp_process() 722 } else if ((flags & TCP_SYN) && (seqno == pcb->rcv_nxt - 1)) { in tcp_process() [all …]
|
D | tcp.c | 150 tcp_rst(pcb->snd_nxt, pcb->rcv_nxt, &pcb->local_ip, &pcb->remote_ip, in tcp_close_shutdown() 339 ackno = pcb->rcv_nxt; in tcp_abandon() 545 u32_t new_right_edge = pcb->rcv_nxt + pcb->rcv_wnd; in tcp_update_rcv_ann_wnd() 552 if (TCP_SEQ_GT(pcb->rcv_nxt, pcb->rcv_ann_right_edge)) { in tcp_update_rcv_ann_wnd() 558 u32_t new_rcv_ann_wnd = pcb->rcv_ann_right_edge - pcb->rcv_nxt; in tcp_update_rcv_ann_wnd() 704 pcb->rcv_nxt = 0; in tcp_connect() 710 pcb->rcv_ann_right_edge = pcb->rcv_nxt; in tcp_connect() 922 tcp_rst(pcb->snd_nxt, pcb->rcv_nxt, &pcb->local_ip, &pcb->remote_ip, in tcp_slowtmr() 1597 pcb->snd_nxt, pcb->rcv_nxt)); in tcp_debug_print_pcbs() 1604 pcb->snd_nxt, pcb->rcv_nxt)); in tcp_debug_print_pcbs() [all …]
|
D | tcp_out.c | 104 tcphdr->ackno = htonl(pcb->rcv_nxt); in tcp_output_alloc_header() 111 pcb->rcv_ann_right_edge = pcb->rcv_nxt + pcb->rcv_ann_wnd; in tcp_output_alloc_header() 855 ("tcp_output: sending ACK for %"U32_F"\n", pcb->rcv_nxt)); in tcp_send_empty_ack() 861 pcb->ts_lastacksent = pcb->rcv_nxt; in tcp_send_empty_ack() 1057 seg->tcphdr->ackno = htonl(pcb->rcv_nxt); in tcp_output_segment() 1062 pcb->rcv_ann_right_edge = pcb->rcv_nxt + pcb->rcv_ann_wnd; in tcp_output_segment() 1073 pcb->ts_lastacksent = pcb->rcv_nxt; in tcp_output_segment() 1386 pcb->snd_nxt - 1, pcb->rcv_nxt)); in tcp_keepalive() 1466 pcb->snd_nxt - 1, pcb->rcv_nxt)); in tcp_zero_window_probe()
|
/external/syslinux/core/lwip/src/include/lwip/ |
D | tcp.h | 191 u32_t rcv_nxt; /* next seqno expected */ member
|