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

/xnu-2422.115.4/bsd/netinet/
H A Dtcp_newreno.c119 sndsb->sb_idealsize = min(max(tcp_sendspace, tp->snd_ssthresh), \
129 if (sb->sb_hiwat > tp->snd_ssthresh &&
131 if (sb->sb_idealsize > tp->snd_ssthresh) {
132 SET_SNDSB_IDEAL_SIZE(sb, tp->snd_ssthresh);
146 SET_SNDSB_IDEAL_SIZE(sb, tp->snd_ssthresh);
239 if (cw >= tp->snd_ssthresh) {
271 if (cw >= tp->snd_ssthresh)
286 tp->snd_ssthresh = win * tp->t_maxseg;
302 * snd_ssthresh outstanding data. But in case we
310 if (ss < (int32_t)tp->snd_ssthresh)
[all...]
H A Dtcp_ledbat.c219 tp->bg_ssthresh = tp->snd_ssthresh;
300 tp->snd_ssthresh = win * tp->t_maxseg;
301 if (tp->bg_ssthresh > tp->snd_ssthresh)
302 tp->bg_ssthresh = tp->snd_ssthresh;
318 * snd_ssthresh outstanding data. But in case we
326 if (ss < (int32_t)tp->snd_ssthresh)
329 tp->snd_cwnd = tp->snd_ssthresh;
380 tp->snd_ssthresh = win * tp->t_maxseg;
382 if (tp->bg_ssthresh > tp->snd_ssthresh)
383 tp->bg_ssthresh = tp->snd_ssthresh;
[all...]
H A Dtcp_var.h276 u_int32_t snd_ssthresh; /* snd_cwnd size threshold for member in struct:tcpcb
674 u_int32_t snd_ssthresh; /* snd_cwnd size threshold for member in struct:otcpcb
947 u_int32_t snd_ssthresh; /* snd_cwnd size threshold for member in struct:xtcpcb64
1029 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.c562 if (tp->snd_cwnd > tp->snd_ssthresh)
563 tp->snd_cwnd = tp->snd_ssthresh;
H A Dtcp_input.c876 tp->snd_cwnd = tp->snd_ssthresh +
1284 tp->snd_ssthresh = tp->snd_ssthresh_prev;
1294 tp->snd_ssthresh = tp->snd_ssthresh_prev;
2331 tp->snd_cwnd >= tp->snd_ssthresh &&
3518 if (awnd < tp->snd_ssthresh) {
3520 if (tp->snd_cwnd > tp->snd_ssthresh)
3521 tp->snd_cwnd = tp->snd_ssthresh;
3584 tp->snd_cwnd = tp->snd_ssthresh +
4907 tp->snd_ssthresh = max(2 * mss, rt->rt_rmx.rmx_ssthresh);
4910 tp->snd_ssthresh
[all...]
H A Dtcp_subr.c895 tp->snd_ssthresh = TCP_MAXWIN << TCP_MAX_WINSHIFT;
1119 i = tp->snd_ssthresh;
1368 otp->snd_ssthresh = tp->snd_ssthresh;
1550 otp->snd_ssthresh = tp->snd_ssthresh;
H A Dtcp_timer.c585 tp->snd_ssthresh_prev = max(fsize, tp->snd_ssthresh);
599 tp->snd_ssthresh_prev = tp->snd_ssthresh;
H A Dtcp_usrreq.c1431 ti->tcpi_snd_ssthresh = tp->snd_ssthresh;
/xnu-2422.115.4/bsd/dev/dtrace/scripts/
H A Dtcp.d156 uint32_t snd_ssthresh; /* slow-start threshold */
192 snd_ssthresh = T->snd_ssthresh;

Completed in 55 milliseconds