Lines Matching defs:throttle_msecs
130 unsigned int throttle_msecs;
1325 if (conn->throttle_msecs <= 1)
1326 conn->throttle_msecs = 0;
1328 conn->throttle_msecs = conn->throttle_msecs*3 / 4;
1354 if (conn->throttle_msecs == 0)
1355 conn->throttle_msecs = conn->client->set.throttle_set.init_msecs;
1356 else if (conn->throttle_msecs < conn->last_successful_throttle_msecs)
1357 conn->throttle_msecs = conn->last_successful_throttle_msecs;
1359 conn->throttle_msecs *= 2;
1360 if (conn->throttle_msecs > conn->client->set.throttle_set.max_msecs)
1361 conn->throttle_msecs = conn->client->set.throttle_set.max_msecs;
1376 conn->last_successful_throttle_msecs = conn->throttle_msecs;
1379 if (conn->throttle_msecs > 0) {
1382 conn->throttle_msecs);
2126 if (conn->throttle_msecs == 0) {