Searched refs:snd_fack (Results 1 – 5 of 5) sorted by relevance
| /freebsd/sys/netinet/ |
| H A D | tcp_sack.c | 587 if (SEQ_LT(tp->snd_fack, th_ack)) { in tcp_sack_doack() 588 tp->snd_fack = th_ack; in tcp_sack_doack() 649 tp->snd_fack = SEQ_MAX(tp->snd_una, th_ack); in tcp_sack_doack() 665 if (SEQ_LT(tp->snd_fack, sblkp->start)) { in tcp_sack_doack() 673 SEQ_LEQ(tp->snd_fack,temp->end)) { in tcp_sack_doack() 675 temp->start = SEQ_MAX(tp->snd_fack, SEQ_MAX(tp->snd_una, th_ack)); in tcp_sack_doack() 682 tp->snd_fack = sblkp->end; in tcp_sack_doack() 692 temp = tcp_sackhole_insert(tp, tp->snd_fack,sblkp->start,NULL); in tcp_sack_doack() 696 tp->snd_fack = sblkp->end; in tcp_sack_doack() 710 SEQ_LT(tp->snd_fack, sblkp->start)) in tcp_sack_doack() [all …]
|
| H A D | tcp_input.c | 468 if (SEQ_LT(tp->snd_fack, tp->snd_una) || in cc_cong_signal() 469 SEQ_GT(tp->snd_fack, tp->snd_max)) { in cc_cong_signal() 470 tp->snd_fack = tp->snd_una; in cc_cong_signal() 486 if (SEQ_LT(tp->snd_fack, th->th_ack) || in cc_post_recovery() 487 SEQ_GT(tp->snd_fack, tp->snd_max)) { in cc_post_recovery() 488 tp->snd_fack = th->th_ack; in cc_post_recovery() 2823 tp->snd_fack = th->th_ack; in tcp_do_segment()
|
| 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 | 2883 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;
|