Home
last modified time | relevance | path

Searched refs:last_ack_sent (Results 1 – 7 of 7) sorted by relevance

/xnu-8020.101.4/bsd/netinet/
H A Dtcp_cc.c381 (tp->rcv_nxt - tp->last_ack_sent <= tp->t_maxseg || in tcp_cc_delay_ack()
383 (tp->rcv_nxt - tp->last_ack_sent) < (recwin >> 2)) { in tcp_cc_delay_ack()
H A Dtcp_var.h395 tcp_seq last_ack_sent; member
954 tcp_seq last_ack_sent; member
1351 tcp_seq last_ack_sent; member
1434 tcp_seq last_ack_sent; member
H A Din_pcblist.c264 xt->last_ack_sent = tp->last_ack_sent; in tcpcb_to_xtcpcb_n()
H A Dtcp_output.c1437 (tp->last_ack_sent != tp->rcv_nxt || in tcp_output()
1450 (tp->last_ack_sent != tp->rcv_nxt || in tcp_output()
1466 tp->last_ack_sent != tp->rcv_nxt && in tcp_output()
2298 tp->last_ack_sent = tp->rcv_nxt; in tcp_output()
2994 tp->last_ack_sent = tp->rcv_nxt; in tcp_ip_output()
H A Dtcp_input.c2768 SEQ_GEQ(th->th_seq, tp->last_ack_sent) && in tcp_input()
2769 SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) { in tcp_input()
2954 SEQ_LEQ(th->th_seq, tp->last_ack_sent)) { in tcp_input()
3742 if ((SEQ_GEQ(th->th_seq, tp->last_ack_sent) && in tcp_input()
3743 SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) || in tcp_input()
3745 ((tp->last_ack_sent == th->th_seq) || in tcp_input()
3746 ((tp->last_ack_sent - 1) == th->th_seq)))) { in tcp_input()
3747 if (tp->last_ack_sent == th->th_seq) { in tcp_input()
4070 SEQ_LEQ(th->th_seq, tp->last_ack_sent) && in tcp_input()
4071 SEQ_LEQ(tp->last_ack_sent, th->th_seq + tlen + in tcp_input()
H A Dtcp_subr.c1893 otp->last_ack_sent = tp->last_ack_sent; in tcpcb_to_otcpcb()
2077 otp->last_ack_sent = tp->last_ack_sent; in tcpcb_to_xtcpcb64()
H A Dtcp_usrreq.c959 if ((flags & MSG_WAITALL) && SEQ_LT(tp->last_ack_sent, tp->rcv_nxt)) { in tcp_usr_rcvd()