/src/sys/nfs/ |
nfsrtt.h | 64 int cwnd; /* Send window */ member in struct:rttl
|
nfs_clntsocket.c | 423 rt->cwnd = nmp->nm_cwnd;
|
/src/sys/netinet/ |
dccp_tcplike.c | 129 cb->ssthresh = cb->cwnd >>1; 130 cb->cwnd = 1; /* allowing 1 packet to be sent */ 149 LOSS_DEBUG((LOG_INFO, "Timeout. CWND value: %u , OUTSTANDING value: %u\n", 150 cb->cwnd, cb->outstanding)); 226 cb->cwnd = TCPLIKE_INITIAL_CWND; 234 CWND_DEBUG((LOG_INFO, "Init. CWND value: %u , OUTSTANDING value: %u\n", 235 cb->cwnd, cb->outstanding)); 335 if (cb->cwnd <= cb->outstanding) { 337 DCCP_DEBUG((LOG_INFO, "cwnd (%d) < outstanding (%d)\n", cb->cwnd, cb->outstanding)) [all...] |
dccp_tcplike.h | 55 dccp_seq cwnd; /* congestion window */ member in struct:tcplike_send_ccb 57 dccp_seq oldcwnd_ts; /* old cwnd tail seqnr */
|
sctp_indata.c | 3301 int32_t cwnd; member in struct:sctp_hs_raise_drop 3389 cur_val = net->cwnd >> 10; 3392 if (cur_val < sctp_cwnd_adjust[0].cwnd) { 3395 net->cwnd += net->mtu; 3400 net->cwnd += net->net_ack; 3407 if (cur_val < sctp_cwnd_adjust[i].cwnd) { 3414 net->cwnd += incr; 3426 int old_cwnd = net->cwnd; 3429 cur_val = net->cwnd >> 10; 3431 if (cur_val < sctp_cwnd_adjust[0].cwnd) { [all...] |
sctp_timer.c | 317 int old_cwnd=net->cwnd; 319 net->ssthresh = net->cwnd >> 1; 323 net->cwnd = net->mtu; 325 if (net->cwnd < net->mtu) 326 net->cwnd = net->mtu; 328 sctp_log_cwnd(net, net->cwnd-old_cwnd, SCTP_CWND_LOG_FROM_RTX); 334 printf("collapse cwnd to 1MTU ssthresh to %d\n", 655 printf("Net:%p c-f cwnd:%d ssthresh:%d\n", 656 lnets, lnets->cwnd, lnets->ssthresh); 749 * satellite cwnd advance [all...] |
sctp_input.c | 2262 old_cwnd = net->cwnd; 2265 net->ssthresh = net->cwnd / 2; 2271 net->cwnd = net->ssthresh; 2273 sctp_log_cwnd(net, (net->cwnd-old_cwnd), SCTP_CWND_LOG_FROM_SAT); 2276 * cwnd at the next sending seq i.e. the resync_tsn. 2892 /* now middle boxes in sat networks get a cwnd bump */ 2899 * changes to cwnd until we exit the t3 loss recovery. 2904 int old_cwnd=net->cwnd; 2945 /* undo any cwnd adjustment that 2948 net->cwnd = net->prev_cwnd [all...] |
sctp_structs.h | 170 u_int32_t cwnd; /* actual cwnd */ member in struct:sctp_nets 171 u_int32_t prev_cwnd; /* cwnd before any processing */
|
sctp_uio.h | 463 u_int32_t cwnd_new_value; /* cwnd in k */ 540 struct sctp_cwnd_args cwnd; member in union:sctp_cwnd_log::__anonaa8e447d010a
|
sctputil.c | 210 sctp_clog[sctp_cwnd_log_at].x.cwnd.net = net; 211 sctp_clog[sctp_cwnd_log_at].x.cwnd.cwnd_new_value = net->cwnd; 212 sctp_clog[sctp_cwnd_log_at].x.cwnd.inflight = net->flight_size; 213 sctp_clog[sctp_cwnd_log_at].x.cwnd.cwnd_augment = augment; 226 sctp_clog[sctp_cwnd_log_at].x.cwnd.net = net; 227 sctp_clog[sctp_cwnd_log_at].x.cwnd.cwnd_new_value = error; 228 sctp_clog[sctp_cwnd_log_at].x.cwnd.inflight = net->flight_size; 229 sctp_clog[sctp_cwnd_log_at].x.cwnd.cwnd_augment = burst;
|
sctp_output.c | 5137 goal_mtu = net->cwnd - net->flight_size; 5271 * - Check to see if the cwnd/rwnd allows any output, if so we 5339 printf("net:%p fs:%d cwnd:%d\n", 5340 net, net->flight_size, net->cwnd); 5343 if (net->flight_size >= net->cwnd) { 5348 printf("Ok skip fillup->fs:%d > cwnd:%d\n", 5350 net->cwnd); 5708 if (net->flight_size >= net->cwnd) { 5712 printf("fs:%d > cwnd:%d\n", 5713 net->flight_size, net->cwnd); [all...] |
sctp_pcb.c | 2276 * initialize all the cwnd stats of stuff. 2529 net->cwnd = uimin((net->mtu * 4), uimax((stcb->asoc.max_burst * net->mtu), SCTP_INITIAL_CWND)); 2532 if (net->cwnd < (2 * net->mtu)) { 2533 net->cwnd = 2 * net->mtu;
|
sctp_usrreq.c | 2075 paddri->spinfo_cwnd = net->cwnd; 2160 sstat->sstat_primary.spinfo_cwnd = net->cwnd;
|