Searched refs:snd_max (Results 1 - 15 of 15) sorted by relevance

/xnu-2782.1.97/bsd/netinet/
H A Dtcp_seq.h109 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
H A Dtcp_ledbat.c188 flight_size = tp->snd_max - tp->snd_una;
278 tp->snd_nxt == tp->snd_max) ? incr * 2 : incr;
307 ss = tp->snd_max - th->th_ack;
H A Dtcp_cubic.c332 tp->snd_nxt == tp->snd_max) ?
377 tp->t_ccstate->cub_last_max = tp->snd_max - tp->snd_una;
426 if (SEQ_LEQ(th->th_ack, tp->snd_max))
427 flight_size = tp->snd_max - th->th_ack;
H A Dtcp_output.c329 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una);
493 * If we've recently taken a timeout, snd_max will be greater than
497 if (SACK_ENABLED(tp) && SEQ_LT(tp->snd_nxt, tp->snd_max))
619 * If snd_nxt == snd_max and we have transmitted a FIN, the
624 * to snd_max after the fast-retransmit.
949 if (SEQ_LT(tp->snd_nxt, tp->snd_max))
1059 SEQ_GT(tp->snd_max, tp->snd_una) &&
1261 !SEQ_LT(tp->snd_nxt, tp->snd_max) && !sack_rxmit) {
1487 (so->so_snd.sb_cc - (tp->snd_max - tp->snd_una)) >=
1490 (so->so_snd.sb_cc - (tp->snd_max
[all...]
H A Dtcp_newreno.c205 tp->snd_nxt == tp->snd_max) ? incr * 2
242 ss = tp->snd_max - th->th_ack;
H A Dtcp_timer.c603 fsize = tp->snd_max - tp->snd_una;
906 tp->snd_recover = tp->snd_max;
1152 tp->t_rxtshift > 0 || tp->snd_max == tp->snd_una ||
1186 - (tp->snd_max - tp->snd_una);
1188 tp->snd_nxt = tp->snd_max;
1190 snd_len = min((tp->snd_max - tp->snd_una),
1192 tp->snd_nxt = tp->snd_max - snd_len;
H A Dtcp_input.c845 tp->snd_recover = tp->snd_max;
1280 fsize = tp->snd_max - th->th_ack;
1303 tp->snd_nxt = tp->snd_max;
1398 SEQ_GT(tp->snd_max, tp->snd_una) &&
1411 obytes = (tp->snd_max - tp->snd_fack) +
1414 obytes = (tp->snd_max - tp->snd_una);
1426 snd_off = tp->snd_max - tp->snd_una;
1477 * to snd_max. This will take care of adjustments to the
2471 tp->snd_nxt == tp->snd_max) {
2492 SEQ_LEQ(th->th_ack, tp->snd_max)
[all...]
H A Dtcp_sack.c421 SEQ_LT(sack.start, tp->snd_max) &&
423 SEQ_LEQ(sack.end, tp->snd_max))
778 unacked_bytes = tp->snd_max - tp->snd_una;
H A Dtcp_debug.c254 (uint32_t)tp->snd_una, (uint32_t)tp->snd_nxt, (uint32_t)tp->snd_max);
H A Dtcp_var.h278 tcp_seq snd_max; /* highest sequence number sent; member in struct:tcpcb
706 tcp_seq snd_max; /* highest sequence number sent; member in struct:otcpcb
997 tcp_seq snd_max; /* highest sequence number sent; member in struct:xtcpcb64
1079 tcp_seq snd_max; /* highest sequence number sent; member in struct:xtcpcb_n
H A Din_pcblist.c211 xt->snd_max = tp->snd_max;
H A Dtcp_subr.c1415 otp->snd_max = tp->snd_max;
1598 otp->snd_max = tp->snd_max;
1850 SEQ_LT(icmp_tcp_seq, tp->snd_max)) {
H A Dtcp_usrreq.c1476 if (tp->snd_max != tp->snd_nxt)
1513 ti->tcpi_txunacked = tp->snd_max - tp->snd_una;
/xnu-2782.1.97/bsd/dev/dtrace/scripts/
H A Dtcp.d159 uint32_t snd_max; /* send max */
195 snd_max = T->snd_max;
/xnu-2782.1.97/bsd/net/
H A Dntstat.c1341 desc->txunacked = tp->snd_max - tp->snd_una;

Completed in 162 milliseconds