Home
last modified time | relevance | path

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

/xnu-12377.41.6/bsd/netinet/
H A Dtcp_cc.c164 tp->rcv_nxt - tp->last_ack_sent <= tp->t_maxseg) { in tcp_cc_delay_ack()
191 (tp->rcv_nxt - tp->last_ack_sent <= tp->t_maxseg || in tcp_cc_delay_ack()
193 (tp->rcv_nxt - tp->last_ack_sent) < (recwin >> 2) && in tcp_cc_delay_ack()
194 (tp->rcv_nxt - tp->last_ack_sent) < 256 * tp->t_maxseg) { in tcp_cc_delay_ack()
H A Dtcp_var.h542 tcp_seq last_ack_sent; member
1204 tcp_seq last_ack_sent; member
1598 tcp_seq last_ack_sent; member
1681 tcp_seq last_ack_sent; member
H A Dtcp_input.c3545 SEQ_GEQ(th->th_seq, tp->last_ack_sent) && in tcp_input()
3546 SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd))) { in tcp_input()
3567 SEQ_GEQ(th->th_seq, tp->last_ack_sent) && in tcp_input()
3568 SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) { in tcp_input()
3745 SEQ_LEQ(th->th_seq, tp->last_ack_sent)) { in tcp_input()
4477 if ((SEQ_GEQ(th->th_seq, tp->last_ack_sent) && in tcp_input()
4478 SEQ_LT(th->th_seq, tp->last_ack_sent + tp->rcv_wnd)) || in tcp_input()
4480 ((tp->last_ack_sent == th->th_seq) || in tcp_input()
4481 (tp->last_ack_sent - 1 == th->th_seq)))) { in tcp_input()
4482 if (tp->last_ack_sent == th->th_seq || tp->last_ack_sent - 1 == th->th_seq) { in tcp_input()
[all …]
H A Din_pcblist.c283 xt->last_ack_sent = tp->last_ack_sent; in tcpcb_to_xtcpcb_n()
H A Dtcp_output.c1901 (tp->last_ack_sent != tp->rcv_nxt || in tcp_output()
1917 tp->last_ack_sent != tp->rcv_nxt && in tcp_output()
2908 tp->last_ack_sent = tp->rcv_nxt; in tcp_output()
3655 tp->last_ack_sent = tp->rcv_nxt; in tcp_ip_output()
H A Dtcp_subr.c2194 otp->last_ack_sent = tp->last_ack_sent; in tcpcb_to_otcpcb()
2378 otp->last_ack_sent = tp->last_ack_sent; in tcpcb_to_xtcpcb64()
H A Dtcp_usrreq.c1051 if ((flags & MSG_WAITALL) && SEQ_LT(tp->last_ack_sent, tp->rcv_nxt)) { in tcp_usr_rcvd()