Searched refs:snd_nxt (Results 1 - 13 of 13) sorted by relevance

/xnu-2422.115.4/bsd/netinet/
H A Dtcp_output.c478 * snd_nxt. There may be SACK information that allows us to avoid
479 * resending already delivered data. Adjust snd_nxt accordingly.
481 if (SACK_ENABLED(tp) && SEQ_LT(tp->snd_nxt, tp->snd_max))
484 off = tp->snd_nxt - tp->snd_una;
601 * If snd_nxt == snd_max and we have transmitted a FIN, the
605 * acks after fast-retransmit because TCP will reset snd_nxt
608 * In the normal retransmit-FIN-only case, however, snd_nxt will
638 (tp->snd_nxt - tp->sack_newdata) -
654 if ((flags & TH_SYN) && SEQ_GT(tp->snd_nxt, tp->snd_una)) {
716 * cancel pending retransmit, pull snd_nxt bac
[all...]
H A Dtcp_seq.h109 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
H A Dtcp_sack.c560 (tp->snd_nxt - tp->sack_newdata) +
642 * traverses the SACK list to see if snd_nxt should be moved forward.
651 if (SEQ_GEQ(tp->snd_nxt, tp->snd_fack))
654 * Two cases for which we want to advance snd_nxt:
655 * i) snd_nxt lies between end of one hole and beginning of another
656 * ii) snd_nxt lies between end of last hole and snd_fack
659 if (SEQ_LT(tp->snd_nxt, cur->end))
661 if (SEQ_GEQ(tp->snd_nxt, p->start))
664 tp->snd_nxt = p->start;
668 if (SEQ_LT(tp->snd_nxt, cu
[all...]
H A Dtcp_debug.c254 (uint32_t)tp->snd_una, (uint32_t)tp->snd_nxt, (uint32_t)tp->snd_max);
H A Dtcp_newreno.c259 tp->snd_nxt == tp->snd_max) ? incr * 2 : incr;
H A Dtcp_var.h261 tcp_seq snd_nxt; /* send next */ member in struct:tcpcb
659 tcp_seq snd_nxt; /* send next */ member in struct:otcpcb
932 tcp_seq snd_nxt; /* send next */ member in struct:xtcpcb64
1014 tcp_seq snd_nxt; /* send next */ member in struct:xtcpcb_n
H A Dtcp_input.c1299 tp->snd_nxt = tp->snd_max;
2309 tp->snd_nxt == tp->snd_max) {
2581 * Also initialize tp->snd_nxt to tp->iss+1 and tp->snd_una to tp->iss.
3485 * Kludge snd_nxt & the congestion
3516 awnd = (tp->snd_nxt - tp->snd_fack) +
3533 tcp_seq onxt = tp->snd_nxt;
3571 tp->sack_newdata = tp->snd_nxt;
3581 tp->snd_nxt = th->th_ack;
3586 if (SEQ_GT(onxt, tp->snd_nxt))
3587 tp->snd_nxt
[all...]
H A Din_pcblist.c212 xt->snd_nxt = tp->snd_nxt;
H A Dtcp_ledbat.c282 tp->snd_nxt == tp->snd_max) ? incr * 2 : incr;
H A Dtcp_subr.c1356 otp->snd_nxt = tp->snd_nxt;
1538 otp->snd_nxt = tp->snd_nxt;
2137 tp->snd_nxt = tp->snd_una;
2722 (tp->snd_nxt - tp->snd_una);
H A Dtcp_usrreq.c1417 if (tp->snd_max != tp->snd_nxt)
1438 ti->tcpi_snd_nxt = tp->snd_nxt;
H A Dtcp_timer.c836 tp->snd_nxt = tp->snd_una;
/xnu-2422.115.4/bsd/dev/dtrace/scripts/
H A Dtcp.d158 uint32_t snd_nxt; /* send next */
194 snd_nxt = T->snd_nxt;

Completed in 186 milliseconds