Searched refs:snd_ssthresh (Results 1 - 12 of 12) sorted by relevance

/xnu-2782.1.97/bsd/netinet/
H A Dtcp_ledbat.c215 tp->bg_ssthresh = tp->snd_ssthresh;
296 tp->snd_ssthresh = win * tp->t_maxseg;
297 if (tp->bg_ssthresh > tp->snd_ssthresh)
298 tp->bg_ssthresh = tp->snd_ssthresh;
314 * snd_ssthresh outstanding data. But in case we
322 if (ss < (int32_t)tp->snd_ssthresh)
325 tp->snd_cwnd = tp->snd_ssthresh;
379 tp->snd_ssthresh = win * tp->t_maxseg;
381 if (tp->bg_ssthresh > tp->snd_ssthresh)
382 tp->bg_ssthresh = tp->snd_ssthresh;
[all...]
H A Dtcp_newreno.c186 if (cw >= tp->snd_ssthresh) {
218 if (cw >= tp->snd_ssthresh)
233 tp->snd_ssthresh = win * tp->t_maxseg;
249 * snd_ssthresh outstanding data. But in case we
257 if (ss < (int32_t)tp->snd_ssthresh)
260 tp->snd_cwnd = tp->snd_ssthresh;
297 tp->snd_ssthresh = win * tp->t_maxseg;
339 if (tp->snd_cwnd >= tp->snd_ssthresh) {
H A Dtcp_cc.c97 sndsb->sb_idealsize = min(max(tcp_sendspace, tp->snd_ssthresh), \
226 dbg_state.ccd_snd_ssthresh = tp->snd_ssthresh;
267 if (sb->sb_hiwat > tp->snd_ssthresh &&
269 if (sb->sb_idealsize > tp->snd_ssthresh) {
270 SET_SNDSB_IDEAL_SIZE(sb, tp->snd_ssthresh);
286 SET_SNDSB_IDEAL_SIZE(sb, tp->snd_ssthresh);
H A Dtcp_cubic.c142 && tp->snd_ssthresh < (TCP_MAXWIN << TCP_MAX_WINSHIFT))
143 tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT;
146 tp->t_ccstate->cub_last_max = tp->snd_ssthresh;
321 if (tp->snd_cwnd >= tp->snd_ssthresh) {
417 tp->snd_ssthresh = win * tp->t_maxseg;
432 * Window inflation should have left us with approx snd_ssthresh
437 if (flight_size < tp->snd_ssthresh)
441 tp->snd_cwnd = tp->snd_ssthresh;
H A Dtcp_var.h296 u_int32_t snd_ssthresh; /* snd_cwnd size threshold for member in struct:tcpcb
724 u_int32_t snd_ssthresh; /* snd_cwnd size threshold for member in struct:otcpcb
1015 u_int32_t snd_ssthresh; /* snd_cwnd size threshold for member in struct:xtcpcb64
1097 u_int32_t snd_ssthresh; /* snd_cwnd size threshold for member in struct:xtcpcb_n
H A Din_pcblist.c224 xt->snd_ssthresh = tp->snd_ssthresh;
H A Dtcp_sack.c652 if (tp->snd_cwnd > tp->snd_ssthresh)
653 tp->snd_cwnd = tp->snd_ssthresh;
H A Dtcp_input.c849 tp->snd_cwnd = tp->snd_ssthresh +
1287 tp->snd_ssthresh = tp->snd_ssthresh_prev;
1297 tp->snd_ssthresh = tp->snd_ssthresh_prev;
2493 tp->snd_cwnd >= tp->snd_ssthresh &&
3650 if (awnd < tp->snd_ssthresh) {
3652 if (tp->snd_cwnd > tp->snd_ssthresh)
3653 tp->snd_cwnd = tp->snd_ssthresh;
3750 tp->snd_cwnd = tp->snd_ssthresh +
5094 tp->snd_ssthresh = max(2 * mss, rt->rt_rmx.rmx_ssthresh);
5097 tp->snd_ssthresh
[all...]
H A Dtcp_subr.c935 tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT;
1152 i = tp->snd_ssthresh;
1428 otp->snd_ssthresh = tp->snd_ssthresh;
1611 otp->snd_ssthresh = tp->snd_ssthresh;
H A Dtcp_timer.c604 tp->snd_ssthresh_prev = max(fsize, tp->snd_ssthresh);
618 tp->snd_ssthresh_prev = tp->snd_ssthresh;
H A Dtcp_usrreq.c1490 ti->tcpi_snd_ssthresh = tp->snd_ssthresh;
/xnu-2782.1.97/bsd/dev/dtrace/scripts/
H A Dtcp.d156 uint32_t snd_ssthresh; /* slow-start threshold */
192 snd_ssthresh = T->snd_ssthresh;

Completed in 71 milliseconds