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

/freebsd-12-stable/sys/netinet/cc/
H A Dcc_cubic.c90 unsigned long max_cwnd; member in struct:cubic
159 cubic_data->max_cwnd = CCV(ccv, snd_cwnd);
166 cubic_data->K = cubic_k(cubic_data->max_cwnd /
185 cubic_data->mean_rtt_ticks, cubic_data->max_cwnd,
189 cubic_data->mean_rtt_ticks, cubic_data->max_cwnd,
216 * max_cwnd.
219 cubic_data->max_cwnd < CCV(ccv, snd_cwnd)) {
220 cubic_data->max_cwnd = CCV(ccv, snd_cwnd);
221 cubic_data->K = cubic_k(cubic_data->max_cwnd /
243 cubic_data->max_cwnd
[all...]
/freebsd-12-stable/sys/netinet/
H A Dsctp_peeloff.c133 n_inp->max_cwnd = inp->max_cwnd;
H A Dsctp_timer.c181 uint32_t max_cwnd = 0; local
258 if (max_cwnd < mnet->cwnd) {
260 max_cwnd = mnet->cwnd;
261 } else if (max_cwnd == mnet->cwnd) {
278 max_cwnd = mnet->cwnd; /* Useless? */
302 if (max_cwnd < mnet->cwnd) {
304 max_cwnd = mnet->cwnd;
305 } else if (max_cwnd == mnet->cwnd) {
323 max_cwnd = mnet->cwnd;
H A Dsctp_pcb.h406 uint32_t max_cwnd; member in struct:sctp_inpcb
H A Dsctp_cc_functions.c60 if ((assoc->max_cwnd > 0) &&
61 (net->cwnd > assoc->max_cwnd) &&
63 net->cwnd = assoc->max_cwnd;
H A Dsctp_structs.h1225 uint32_t max_cwnd; member in struct:sctp_association
H A Dsctp_usrreq.c3684 av->assoc_value = stcb->asoc.max_cwnd;
3692 av->assoc_value = inp->max_cwnd;
6827 stcb->asoc.max_cwnd = av->assoc_value;
6828 if (stcb->asoc.max_cwnd > 0) {
6830 if ((net->cwnd > stcb->asoc.max_cwnd) &&
6832 net->cwnd = stcb->asoc.max_cwnd;
6846 inp->max_cwnd = av->assoc_value;
H A Dsctp_input.c2703 inp->max_cwnd = (*inp_p)->max_cwnd;
H A Dsctputil.c1156 asoc->max_cwnd = inp->max_cwnd;
H A Dsctp_pcb.c2461 inp->max_cwnd = 0;

Completed in 294 milliseconds