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

/xnu-2422.115.4/bsd/netinet/
H A Dtcp_seq.h109 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
H A Dtcp_output.c317 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una);
477 * If we've recently taken a timeout, snd_max will be greater than
481 if (SACK_ENABLED(tp) && SEQ_LT(tp->snd_nxt, tp->snd_max))
601 * If snd_nxt == snd_max and we have transmitted a FIN, the
606 * to snd_max after the fast-retransmit.
898 if (SEQ_LT(tp->snd_nxt, tp->snd_max))
1005 SEQ_GT(tp->snd_max, tp->snd_una) &&
1197 !SEQ_LT(tp->snd_nxt, tp->snd_max) && !sack_rxmit) {
1416 (so->so_snd.sb_cc - (tp->snd_max - tp->snd_una)) >=
1418 tp->t_bwmeas->bw_size = min((so->so_snd.sb_cc - (tp->snd_max
[all...]
H A Dtcp_ledbat.c192 flight_size = tp->snd_max - tp->snd_una;
282 tp->snd_nxt == tp->snd_max) ? incr * 2 : incr;
311 ss = tp->snd_max - th->th_ack;
H A Dtcp_newreno.c259 tp->snd_nxt == tp->snd_max) ? incr * 2 : incr;
295 ss = tp->snd_max - th->th_ack;
H A Dtcp_input.c872 tp->snd_recover = tp->snd_max;
1277 fsize = tp->snd_max - th->th_ack;
1299 tp->snd_nxt = tp->snd_max;
2309 tp->snd_nxt == tp->snd_max) {
2330 SEQ_LEQ(th->th_ack, tp->snd_max) &&
2407 if (tp->snd_una == tp->snd_max)
2709 SEQ_GT(th->th_ack, tp->snd_max))) {
2741 SEQ_GT(th->th_ack, tp->snd_max))) {
3306 * tp->snd_una < th->th_ack <= tp->snd_max
3318 if (SEQ_GT(th->th_ack, tp->snd_max)) {
[all...]
H A Dtcp_debug.c254 (uint32_t)tp->snd_una, (uint32_t)tp->snd_nxt, (uint32_t)tp->snd_max);
H A Dtcp_var.h258 tcp_seq snd_max; /* highest sequence number sent; member in struct:tcpcb
656 tcp_seq snd_max; /* highest sequence number sent; member in struct:otcpcb
929 tcp_seq snd_max; /* highest sequence number sent; member in struct:xtcpcb64
1011 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_sack.c349 SEQ_LT(sack.start, tp->snd_max) &&
351 SEQ_LEQ(sack.end, tp->snd_max))
H A Dtcp_subr.c1355 otp->snd_max = tp->snd_max;
1537 otp->snd_max = tp->snd_max;
1786 SEQ_LT(icmp_tcp_seq, tp->snd_max)) {
H A Dtcp_timer.c584 fsize = tp->snd_max - tp->snd_una;
841 tp->snd_recover = tp->snd_max;
H A Dtcp_usrreq.c1417 if (tp->snd_max != tp->snd_nxt)
1454 ti->tcpi_txunacked = tp->snd_max - tp->snd_una;
/xnu-2422.115.4/bsd/dev/dtrace/scripts/
H A Dtcp.d159 uint32_t snd_max; /* send max */
195 snd_max = T->snd_max;
/xnu-2422.115.4/bsd/net/
H A Dntstat.c1114 desc->txunacked = tp->snd_max - tp->snd_una;

Completed in 62 milliseconds