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

/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_seq.h109 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
H A Dtcp_sack.c332 if (SEQ_LT(tp->snd_una, th_ack) && !TAILQ_EMPTY(&tp->snd_holes)) {
333 sack_blocks[num_sack_blks].start = tp->snd_una;
346 SEQ_GT(sack.start, tp->snd_una) &&
349 SEQ_GT(sack.end, tp->snd_una) &&
382 tp->snd_fack = SEQ_MAX(tp->snd_una, th_ack);
543 if (((th->th_ack - tp->snd_una) / tp->t_maxseg) > 2)
566 if (SEQ_LT(p->rxmit, tp->snd_una)) {/* old SACK hole */
H A Dtcp_output.c313 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una);
465 off = tp->snd_nxt - tp->snd_una;
517 off = p->rxmit - tp->snd_una; /* update off only if we really transmit SACK data */
589 * be set to snd_una, the offset will be 0, and the length may
634 if ((flags & TH_SYN) && SEQ_GT(tp->snd_nxt, tp->snd_una)) {
705 tp->snd_nxt = tp->snd_una;
727 (tp->snd_nxt - tp->snd_una))) {
801 if (SEQ_LT(p->rxmit + len, tp->snd_una + so->so_snd.sb_cc))
804 if (SEQ_LT(tp->snd_nxt + len, tp->snd_una + so->so_snd.sb_cc))
918 if (SEQ_GT(tp->snd_up, tp->snd_una))
[all...]
H A Dtcp_ledbat.c192 flight_size = tp->snd_max - tp->snd_una;
231 acked = th->th_ack - tp->snd_una;
263 acked = th->th_ack - tp->snd_una;
H A Dtcp_newreno.c202 acked = th->th_ack - tp->snd_una;
236 acked = th->th_ack - tp->snd_una;
H A Dtcp_input.c491 bw_meas_bytes = tp->snd_una - tp->t_bwmeas->bw_start;
2255 if (SEQ_GT(th->th_ack, tp->snd_una) &&
2303 acked = th->th_ack - tp->snd_una;
2309 * assume that snd_una is not updated yet.
2321 if (SEQ_GT(tp->snd_una, tp->snd_recover) &&
2324 tp->snd_una = th->th_ack;
2344 if (tp->snd_una == tp->snd_max)
2362 } else if (th->th_ack == tp->snd_una &&
2489 * Also initialize tp->snd_nxt to tp->iss+1 and tp->snd_una to tp->iss.
2563 tp->snd_recover = tp->snd_una;
[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.h233 tcp_seq snd_una; /* send unacknowledged */ member in struct:tcpcb
553 tcp_seq snd_una; /* send unacknowledged */ member in struct:otcpcb
791 tcp_seq snd_una; /* send unacknowledged */ member in struct:xtcpcb64
874 tcp_seq snd_una; /* send unacknowledged */ member in struct:xtcpcb_n
H A Din_pcblist.c209 xt->snd_una = tp->snd_una;
H A Dtcp_subr.c1322 otp->snd_una = tp->snd_una;
1508 otp->snd_una = tp->snd_una;
1756 if (SEQ_GEQ(icmp_tcp_seq, tp->snd_una) &&
2105 tp->snd_nxt = tp->snd_una;
2625 (tp->snd_nxt - tp->snd_una);
H A Dtcp_timer.c739 tp->snd_nxt = tp->snd_una;
828 * Using sequence number tp->snd_una-1
853 tp->rcv_nxt, tp->snd_una - 1, 0, ifscope,
H A Dtcp_usrreq.c781 tp->snd_up = tp->snd_una + so->so_snd.sb_cc;
1175 ti->tcpi_txunacked = tp->snd_max - tp->snd_una;
/darwin-on-arm/xnu/bsd/net/
H A Dntstat.c1026 desc->txunacked = tp->snd_max - tp->snd_una;

Completed in 42 milliseconds