Searched refs:snd_fack (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/netinet/ |
H A D | tcp_sack.c | 592 if (SEQ_LT(tp->snd_fack, th_ack)) { in tcp_sack_doack() 594 tp->snd_fack = th_ack; in tcp_sack_doack() 655 tp->snd_fack = SEQ_MAX(tp->snd_una, th_ack); in tcp_sack_doack() 671 if (SEQ_LT(tp->snd_fack, sblkp->start)) { in tcp_sack_doack() 679 SEQ_LEQ(tp->snd_fack,temp->end)) { in tcp_sack_doack() 681 temp->start = SEQ_MAX(tp->snd_fack, SEQ_MAX(tp->snd_una, th_ack)); in tcp_sack_doack() 688 tp->snd_fack = sblkp->end; in tcp_sack_doack() 698 temp = tcp_sackhole_insert(tp, tp->snd_fack,sblkp->start,NULL); in tcp_sack_doack() 702 tp->snd_fack = sblkp->end; in tcp_sack_doack() 716 SEQ_LT(tp->snd_fack, sblkp->start)) in tcp_sack_doack() [all …]
|
H A D | tcp_input.c | 472 if (SEQ_LT(tp->snd_fack, tp->snd_una) || in cc_cong_signal() 473 SEQ_GT(tp->snd_fack, tp->snd_max)) { in cc_cong_signal() 474 tp->snd_fack = tp->snd_una; in cc_cong_signal() 490 if (SEQ_LT(tp->snd_fack, th->th_ack) || in cc_post_recovery() 491 SEQ_GT(tp->snd_fack, tp->snd_max)) { in cc_post_recovery() 492 tp->snd_fack = th->th_ack; in cc_post_recovery() 2898 tp->snd_fack = th->th_ack; in tcp_do_segment() 4208 pipe = tp->snd_nxt - tp->snd_fack + tp->sackhint.sack_bytes_rexmit; in tcp_compute_pipe()
|
H A D | tcp_var.h | 421 tcp_seq snd_fack; /* last seq number(+1) sack'd by rcv'r*/ member
|
H A D | tcp_usrreq.c | 3183 tp->snd_fack, tp->rcv_numsacks); in db_print_tcpcb()
|
/freebsd/cddl/lib/libdtrace/ |
H A D | tcp.d | 246 tcps_sack_fack = p == NULL ? 0 : p->snd_fack;
|