HomeSort by: relevance | last modified time | path
    Searched refs:snd_fack (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/netinet/
tcp_seq.h 61 (tp)->snd_recover = (tp)->snd_high = (tp)->snd_fack = (tp)->iss
tcp_sack.c 311 * FACK TCP. Update snd_fack so we can enter Fast
314 if (SEQ_GEQ(sack->right, tp->snd_fack))
315 tp->snd_fack = sack->right;
542 printf("rcv_lastsack=%" PRIu32 ", snd_fack=%" PRIu32 "\n",
543 tp->rcv_lastsack, tp->snd_fack);
tcp_congctl.c 583 if (TCP_SACK_ENABLED(tp) && SEQ_GT(th->th_ack, tp->snd_fack))
584 tp->snd_fack = th->th_ack;
767 if (TCP_SACK_ENABLED(tp) && SEQ_GT(th->th_ack, tp->snd_fack))
768 tp->snd_fack = th->th_ack;
tcp_timer.c 355 tp->snd_fack = tp->snd_una;
615 tp->snd_fack = tp->snd_una;
tcp_var.h 355 tcp_seq snd_fack; /* FACK TCP. Forward-most data held by member in struct:tcpcb
412 (SEQ_GT(tp->snd_fack, tp->snd_una + tcprexmtthresh * tp->t_segsz)))
tcp_input.c 1868 tp->snd_fack = tp->snd_una;
2589 if (SEQ_GT(tp->snd_una, tp->snd_fack))
2590 tp->snd_fack = tp->snd_una;

Completed in 34 milliseconds