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

  /src/sys/netinet/
tcp_seq.h 60 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
tcp_output.c 410 else if (SEQ_LT(tp->snd_nxt, tp->snd_max)) {
555 idle = (tp->snd_max == tp->snd_una);
670 if (TCP_SACK_ENABLED(tp) && SEQ_LT(tp->snd_nxt, tp->snd_max))
730 KASSERT(p->rxmit + len == tp->snd_max);
937 if (SEQ_LT(tp->snd_nxt, tp->snd_max))
999 if (TCP_SACK_ENABLED(tp) && SEQ_GT(tp->snd_max, tp->snd_una) &&
1325 if (len > 0 && SEQ_GEQ(tp->snd_nxt, tp->snd_max) &&
1349 * (and no SYN or FIN), use snd_max instead of snd_nxt
1351 * state, snd_max might reflect one byte beyond the
1364 th->th_seq = htonl(tp->snd_max);
    [all...]
tcp_sack.c 270 /* If the ACK is outside [snd_una, snd_max], ignore the SACK options. */
271 if (SEQ_LT(th->th_ack, tp->snd_una) || SEQ_GT(th->th_ack, tp->snd_max))
288 if (SEQ_LEQ(right, acked) || SEQ_GT(right, tp->snd_max) ||
540 printf("snd_una=%" PRIu32 ", snd_max=%" PRIu32 "\n",
541 tp->snd_una, tp->snd_max);
tcp_congctl.c 440 tp->snd_recover = tp->snd_max;
625 tp->snd_nxt != tp->snd_max) ? incr : incr * 2;
759 if (SEQ_SUB(tp->snd_max, th->th_ack) < tp->snd_ssthresh)
760 tp->snd_cwnd = SEQ_SUB(tp->snd_max, th->th_ack)
tcp_debug.c 213 tp->snd_max);
tcp_input.c 1820 tp->snd_nxt == tp->snd_max) {
1839 SEQ_LEQ(th->th_ack, tp->snd_max) &&
1895 if (tp->snd_una == tp->snd_max)
2063 SEQ_GT(th->th_ack, tp->snd_max)))
2167 SEQ_GT(th->th_ack, tp->snd_max)))
2437 SEQ_GT(th->th_ack, tp->snd_max))
2456 * tp->snd_una < th->th_ack <= tp->snd_max
2527 if (SEQ_GT(th->th_ack, tp->snd_max)) {
2557 if (th->th_ack == tp->snd_max) {
tcp_timer.c 417 tp->snd_high = tp->snd_max;
tcp_var.h 272 * when entering fast retransmit, it's set to snd_max.
276 * on each RTO, it's set to snd_max.
295 * snd_max
299 tcp_seq snd_max; member in struct:tcpcb
tcp_syncache.c 767 tp->snd_max = tp->snd_nxt = tp->iss+1;
1263 SEQ_GEQ(tp->snd_nxt, tp->snd_max)) {
tcp_subr.c 1073 if (SEQ_LT(tp->iss + so->so_snd.sb_hiwat * 16, tp->snd_max) &&
1446 if (SEQ_LT(seq, tp->snd_una) || SEQ_GT(seq, tp->snd_max))
  /src/usr.sbin/trpt/
trpt.c 510 printf("\trcv_nxt %x rcv_wnd %lx snd_una %x snd_nxt %x snd_max %x\n",
512 tp->snd_max);
  /src/usr.bin/netstat/
inet.c 1105 printf("rcv_adv %u, snd_max %u, snd_cwnd %lu, snd_ssthresh %lu\n",
1106 tcpcb.rcv_adv, tcpcb.snd_max, tcpcb.snd_cwnd, tcpcb.snd_ssthresh);
inet6.c 1557 printf("rcv_adv %u, snd_max %u, snd_cwnd %llu, snd_ssthresh %llu\n",
1558 mypcb.rcv_adv, mypcb.snd_max, (unsigned long long)mypcb.snd_cwnd,

Completed in 28 milliseconds