Searched refs:snd_nxt (Results 1 – 5 of 5) sorted by relevance
/external/syslinux/core/lwip/src/core/ |
D | tcp_out.c | 848 p = tcp_output_alloc_header(pcb, optlen, 0, htonl(pcb->snd_nxt)); in tcp_send_empty_ack() 895 u32_t wnd, snd_nxt; in tcp_output() local 984 snd_nxt = ntohl(seg->tcphdr->seqno) + TCP_TCPLEN(seg); in tcp_output() 985 if (TCP_SEQ_LT(pcb->snd_nxt, snd_nxt)) { in tcp_output() 986 pcb->snd_nxt = snd_nxt; in tcp_output() 1361 p = tcp_output_alloc_header(pcb, 0, 0, htonl(pcb->snd_nxt - 1)); in tcp_keepalive() 1386 pcb->snd_nxt - 1, pcb->rcv_nxt)); in tcp_keepalive() 1466 pcb->snd_nxt - 1, pcb->rcv_nxt)); in tcp_zero_window_probe()
|
D | tcp.c | 150 tcp_rst(pcb->snd_nxt, pcb->rcv_nxt, &pcb->local_ip, &pcb->remote_ip, in tcp_close_shutdown() 338 seqno = pcb->snd_nxt; in tcp_abandon() 705 pcb->snd_nxt = iss; in tcp_connect() 922 tcp_rst(pcb->snd_nxt, pcb->rcv_nxt, &pcb->local_ip, &pcb->remote_ip, in tcp_slowtmr() 1227 pcb->snd_nxt = iss; in tcp_alloc() 1597 pcb->snd_nxt, pcb->rcv_nxt)); in tcp_debug_print_pcbs() 1604 pcb->snd_nxt, pcb->rcv_nxt)); in tcp_debug_print_pcbs() 1611 pcb->snd_nxt, pcb->rcv_nxt)); in tcp_debug_print_pcbs()
|
D | tcp_in.c | 584 if (ackno == pcb->snd_nxt) { in tcp_process() 627 pcb->snd_nxt, ntohl(pcb->unacked->tcphdr->seqno))); in tcp_process() 683 if (TCP_SEQ_BETWEEN(ackno, pcb->lastack+1, pcb->snd_nxt)) { in tcp_process() 739 if ((flags & TCP_ACK) && (ackno == pcb->snd_nxt)) { in tcp_process() 751 } else if ((flags & TCP_ACK) && (ackno == pcb->snd_nxt)) { in tcp_process() 768 if (flags & TCP_ACK && ackno == pcb->snd_nxt) { in tcp_process() 778 if (flags & TCP_ACK && ackno == pcb->snd_nxt) { in tcp_process() 935 } else if (TCP_SEQ_BETWEEN(ackno, pcb->lastack+1, pcb->snd_nxt)){ in tcp_receive() 1035 TCP_TCPLEN(pcb->unsent), pcb->snd_nxt)) { in tcp_receive()
|
/external/syslinux/core/lwip/src/include/lwip/ |
D | tcp.h | 222 u32_t snd_nxt; /* next new seqno to be sent */ member
|
/external/syslinux/core/lwip/ |
D | CHANGELOG | 947 simultaneous close behaviour, and make snd_nxt have the same meaning
|