Home | History | Annotate | Download | only in netinet

Lines Matching refs:outstanding

131 	cb->outstanding = 0; /* is this correct? */
149 LOSS_DEBUG((LOG_INFO, "Timeout. CWND value: %u , OUTSTANDING value: %u\n",
150 cb->cwnd, cb->outstanding));
229 cb->outstanding = 0;
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));
398 cb->outstanding++;
399 TCPLIKE_DEBUG((LOG_INFO, "SENT. cwnd: %d, outstanding: %d\n",cb->cwnd, cb->outstanding));
404 CWND_DEBUG((LOG_INFO, "Sent. CWND value: %u , OUTSTANDING value: %u\n",cb->cwnd, cb->outstanding));
521 cb->outstanding = _cwndvector_size(cb);
522 CWND_DEBUG((LOG_INFO, "Decrease outstanding. was = %u , now = %u\n", prev_size, cb->outstanding));
523 if (prev_size == cb->outstanding) {
645 CWND_DEBUG((LOG_INFO, "Recvd. CWND value: %u , OUTSTANDING value: %u\n",
646 cb->cwnd, cb->outstanding));
648 if (cb->cwnd > cb->outstanding && cb->rto_timer_callout) {
649 LOSS_DEBUG((LOG_INFO, "Force DCCP_OUTPUT, CWND = %u Outstanding = %u\n",
650 cb->cwnd, cb->outstanding));