Searched refs:acked (Results 1 - 4 of 4) sorted by relevance

/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_newreno.c201 int acked = 0; local
202 acked = th->th_ack - tp->snd_una;
208 tp->t_bytes_acked += acked;
234 int acked = 0; local
236 acked = th->th_ack - tp->snd_una;
240 tp->t_bytes_acked += acked;
261 incr = lmin(acked, abc_lim);
H A Dtcp_ledbat.c228 int acked = 0; local
231 acked = th->th_ack - tp->snd_una;
232 tp->t_bytes_acked += acked;
261 int acked = 0; local
263 acked = th->th_ack - tp->snd_una;
264 tp->t_bytes_acked += acked;
284 incr = lmin(acked, abc_lim);
H A Dtcp_input.c1096 int todrop, acked, ourfinisacked, needoutput = 0; local
2218 * free the data acked & wake any higher level process
2303 acked = th->th_ack - tp->snd_una;
2305 tcpstat.tcps_rcvackbyte += acked;
2318 sbdrop(&so->so_snd, acked);
2336 * If all outstanding data are acked, stop
2625 * if SYN has been acked change to ESTABLISHED else SYN_RCVD state
2626 * arrange for segment to be acked (eventually)
2680 tp->snd_una++; /* SYN is acked */
3382 acked
[all...]
/darwin-on-arm/xnu/bsd/netat/
H A Dadsp_RxData.c101 * If any data was acked, check to see if we have anything to fill the
220 } /* whole data block acked */
221 else /* Only some of the data was acked */
223 short acked; local
225 acked = (pktNextRecvSeq - sp->firstRtmtSeq);
226 mp = releaseData(mp, acked);

Completed in 29 milliseconds