Searched refs:snd_nxt (Results 1 – 4 of 4) sorted by relevance
/lk-master/external/lib/lwip/core/ |
A D | tcp_out.c | 854 p = tcp_output_alloc_header(pcb, optlen, 0, htonl(pcb->snd_nxt)); in tcp_send_empty_ack() 901 u32_t wnd, snd_nxt; in tcp_output() local 994 snd_nxt = ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg); in tcp_output() 995 if (TCP_SEQ_LT(pcb->snd_nxt, snd_nxt)) { in tcp_output() 996 pcb->snd_nxt = snd_nxt; in tcp_output() 1376 p = tcp_output_alloc_header(pcb, 0, 0, htonl(pcb->snd_nxt - 1)); in tcp_keepalive() 1401 pcb->snd_nxt - 1, pcb->rcv_nxt)); in tcp_keepalive() 1483 pcb->snd_nxt - 1, pcb->rcv_nxt)); in tcp_zero_window_probe()
|
A D | tcp_in.c | 587 if (ackno == pcb->snd_nxt) { in tcp_process() 630 pcb->snd_nxt, ntohl(pcb->unacked->tcphdr->seqno))); in tcp_process() 686 if (TCP_SEQ_BETWEEN(ackno, pcb->lastack+1, pcb->snd_nxt)) { in tcp_process() 742 if ((flags & TCP_ACK) && (ackno == pcb->snd_nxt)) { in tcp_process() 754 } else if ((flags & TCP_ACK) && (ackno == pcb->snd_nxt)) { in tcp_process() 771 if (flags & TCP_ACK && ackno == pcb->snd_nxt) { in tcp_process() 781 if (flags & TCP_ACK && ackno == pcb->snd_nxt) { in tcp_process() 957 } else if (TCP_SEQ_BETWEEN(ackno, pcb->lastack+1, pcb->snd_nxt)){ in tcp_receive() 1057 TCP_TCPLEN(pcb->unsent), pcb->snd_nxt)) { in tcp_receive()
|
A D | tcp.c | 182 tcp_rst(pcb->snd_nxt, pcb->rcv_nxt, &pcb->local_ip, &pcb->remote_ip, in tcp_close_shutdown() 375 seqno = pcb->snd_nxt; in tcp_abandon() 743 pcb->snd_nxt = iss; in tcp_connect() 963 tcp_rst(pcb->snd_nxt, pcb->rcv_nxt, &pcb->local_ip, &pcb->remote_ip, in tcp_slowtmr() 1325 pcb->snd_nxt = iss; in tcp_alloc() 1704 pcb->snd_nxt, pcb->rcv_nxt)); in tcp_debug_print_pcbs() 1711 pcb->snd_nxt, pcb->rcv_nxt)); in tcp_debug_print_pcbs() 1718 pcb->snd_nxt, pcb->rcv_nxt)); in tcp_debug_print_pcbs()
|
/lk-master/external/lib/lwip/include/lwip/ |
A D | tcp.h | 223 u32_t snd_nxt; /* next new seqno to be sent */ member
|
Completed in 10 milliseconds