Home
last modified time | relevance | path

Searched refs:rcv_nxt (Results 1 – 4 of 4) sorted by relevance

/external/lib/lwip/core/
A Dtcp_in.c484 npcb->rcv_nxt = seqno + 1; in tcp_listen_input()
543 if (TCP_SEQ_BETWEEN(seqno, pcb->rcv_nxt, pcb->rcv_nxt+pcb->rcv_wnd)) { in tcp_timewait_input()
595 if (seqno == pcb->rcv_nxt) {
597 } else if (TCP_SEQ_BETWEEN(seqno, pcb->rcv_nxt, pcb->rcv_nxt + pcb->rcv_wnd)) {
613 seqno, pcb->rcv_nxt));
615 seqno, pcb->rcv_nxt));
643 pcb->rcv_nxt = seqno + 1;
1180 off = pcb->rcv_nxt - seqno;
1224 if (pcb->rcv_nxt == seqno) {
1303 pcb->rcv_nxt = seqno + tcplen;
[all …]
A Dtcp.c182 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 …]
A Dtcp_out.c106 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()
/external/lib/lwip/include/lwip/
A Dtcp.h196 u32_t rcv_nxt; /* next seqno expected */ member

Completed in 11 milliseconds