Home | History | Annotate | Download | only in netinet

Lines Matching refs:cwnd

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);
6458 * If fast_retransmit is happening we ignore the cwnd.
6459 * Otherwise we obey the cwnd and rwnd.
6652 * have flight_size > cwnd.
6654 if (net->flight_size >= net->cwnd) {
6880 * - Check to see if the cwnd/rwnd allows any output, if
6995 if ((net->flight_size+(burst_limit*net->mtu)) < net->cwnd) {
6996 if (net->ssthresh < net->cwnd)
6997 net->ssthresh = net->cwnd;
6998 net->cwnd = (net->flight_size+(burst_limit*net->mtu));
7440 if (net->flight_size > net->cwnd) {
8275 /* found one idle.. decay cwnd on this one
8280 net->cwnd /= 2;
8282 if (net->cwnd < (net->mtu *4)) {
8283 net->cwnd = net->mtu * 4;
8286 if (net->cwnd < (net->mtu * 2)) {
8287 net->cwnd = net->mtu * 2;
10098 if (net->flight_size > net->cwnd) {