/curl/docs/cmdline-opts/ |
H A D | speed-time.md | 4 Long: speed-time 7 Help: Trigger 'speed-limit' abort after this time 12 - speed-limit 15 - --speed-limit 300 --speed-time 10 $URL 18 # `--speed-time` 20 If a transfer runs slower than speed-limit bytes per second during a 21 speed-time period, the transfer is aborted. If speed-time is used, the default 22 speed-limit is 1 unless set with --speed-limit.
|
H A D | speed-limit.md | 4 Long: speed-limit 6 Arg: <speed> 12 - speed-time 16 - --speed-limit 300 --speed-time 10 $URL 19 # `--speed-limit` 21 If a transfer is slower than this set speed (in bytes per second) for a given 22 number of seconds, it gets aborted. The time period is set with --speed-time
|
H A D | limit-rate.md | 5 Arg: <speed> 6 Help: Limit transfer speed to RATE 12 - speed-limit 13 - speed-time 27 The given speed is measured in bytes/second, unless a suffix is appended. 32 The rate limiting logic works on averaging the transfer speed to no more than 35 If you also use the --speed-limit option, that option takes precedence and 36 might cripple the rate-limiting slightly, to help keeping the speed-limit
|
H A D | Makefile.inc | 265 speed-limit.md \ 266 speed-time.md \
|
H A D | write-out.md | 192 The average download speed that curl measured for the complete download. Bytes 196 The average upload speed that curl measured for the complete upload. Bytes per
|
/curl/docs/libcurl/opts/ |
H A D | CURLINFO_SPEED_DOWNLOAD_T.md | 19 CURLINFO_SPEED_DOWNLOAD_T - get download speed 27 curl_off_t *speed); 32 Pass a pointer to a *curl_off_t* to receive the average download speed 51 curl_off_t speed; 52 res = curl_easy_getinfo(curl, CURLINFO_SPEED_DOWNLOAD_T, &speed); 54 printf("Download speed %" CURL_FORMAT_CURL_OFF_T " bytes/sec\n", 55 speed);
|
H A D | CURLINFO_SPEED_UPLOAD_T.md | 18 CURLINFO_SPEED_UPLOAD_T - get upload speed 26 curl_off_t *speed); 31 Pass a pointer to a *curl_off_t* to receive the average upload speed that 50 curl_off_t speed; 51 res = curl_easy_getinfo(curl, CURLINFO_SPEED_UPLOAD_T, &speed); 53 printf("Upload speed %" CURL_FORMAT_CURL_OFF_T " bytes/sec\n", speed);
|
H A D | CURLINFO_SPEED_UPLOAD.md | 18 CURLINFO_SPEED_UPLOAD - get upload speed 25 CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_SPEED_UPLOAD, double *speed); 30 Pass a pointer to a double to receive the average upload speed that curl 52 double speed; 53 res = curl_easy_getinfo(curl, CURLINFO_SPEED_UPLOAD, &speed); 55 printf("Upload speed %.0f bytes/sec\n", speed);
|
H A D | CURLINFO_SPEED_DOWNLOAD.md | 19 CURLINFO_SPEED_DOWNLOAD - get download speed 27 double *speed); 32 Pass a pointer to a double to receive the average download speed that curl 54 double speed; 55 res = curl_easy_getinfo(curl, CURLINFO_SPEED_DOWNLOAD, &speed); 57 printf("Download speed %.0f bytes/sec\n", speed);
|
H A D | CURLOPT_MAX_SEND_SPEED_LARGE.md | 17 CURLOPT_MAX_SEND_SPEED_LARGE - rate limit data upload speed 31 this speed (counted in bytes per second) the transfer pauses to keep the 32 average speed less than or equal to the parameter value. Defaults to unlimited 33 speed. 35 This is not an exact science. libcurl attempts to keep the average speed below 59 /* cap the upload speed to 1000 bytes/sec */
|
H A D | CURLOPT_MAX_RECV_SPEED_LARGE.md | 18 CURLOPT_MAX_RECV_SPEED_LARGE - rate limit data download speed 32 (counted in bytes per second) the transfer pauses to keep the average speed 33 less than or equal to the parameter value. Defaults to unlimited speed. 35 This is not an exact science. libcurl attempts to keep the average speed below 58 /* cap the download speed to 31415 bytes/sec */
|
H A D | CURLOPT_LOW_SPEED_TIME.md | 17 CURLOPT_LOW_SPEED_TIME - low speed limit time period 31 transfer speed should be below the CURLOPT_LOW_SPEED_LIMIT(3) for the
|
H A D | CURLOPT_LOW_SPEED_LIMIT.md | 19 CURLOPT_LOW_SPEED_LIMIT - low speed limit in bytes per second 32 Pass a long as parameter. It contains the average transfer speed in bytes per
|
H A D | CURLOPT_CA_CACHE_TIMEOUT.md | 44 speed up future connections.
|
/curl/tests/unit/ |
H A D | unit1606.c | 52 curl_off_t speed, in runawhile() argument 66 easy->progress.current_speed = speed; in runawhile() 72 speed -= dec; in runawhile()
|
/curl/src/ |
H A D | tool_progress.c | 190 curl_off_t speed = 0; in progress_meter() local 260 speed = dls > uls ? dls : uls; in progress_meter() 264 if(dlknown && speed) { in progress_meter() 265 curl_off_t est = all_dltotal / speed; in progress_meter() 266 curl_off_t left = (all_dltotal - all_dlnow) / speed; in progress_meter() 299 max5data(speed, buffer[2]), /* speed */ in progress_meter()
|
/curl/tests/data/ |
H A D | test572 | 30 speed=ludicrous 81 speed 101 speed
|
/curl/lib/ |
H A D | progress.c | 411 p->dl.speed = trspeed(p->dl.cur_size, p->timespent); in progress_calc() 412 p->ul.speed = trspeed(p->ul.cur_size, p->timespent); in progress_calc() 469 p->current_speed = p->ul.speed + p->dl.speed; in progress_calc() 497 if(total_known && (d->speed > CURL_OFF_T_C(0))) { in pgrs_estimates() 498 est->secs = d->total_size / d->speed; in pgrs_estimates() 564 max5data(p->dl.speed, max5[3]), /* avrg dl speed */ in progress_meter() 565 max5data(p->ul.speed, max5[4]), /* avrg ul speed */ in progress_meter()
|
H A D | getinfo.c | 402 *param_offt = data->progress.dl.speed; in getinfo_offt() 405 *param_offt = data->progress.ul.speed; in getinfo_offt() 512 *param_doublep = (double)data->progress.dl.speed; in getinfo_double() 515 *param_doublep = (double)data->progress.ul.speed; in getinfo_double()
|
H A D | urldata.h | 1063 curl_off_t speed; /* bytes per second transferred */ member
|
/curl/docs/libcurl/ |
H A D | curl_easy_getinfo.md | 318 (**Deprecated**) Average download speed. See CURLINFO_SPEED_DOWNLOAD(3) 322 Average download speed. See CURLINFO_SPEED_DOWNLOAD_T(3) 326 (**Deprecated**) Average upload speed. See CURLINFO_SPEED_UPLOAD(3) 330 Average upload speed in number of bytes per second. See
|
H A D | curl_easy_pause.md | 54 A paused transfer is excluded from low speed cancels via the 56 time period required for the low speed limit to be met.
|
H A D | curl_easy_setopt.md | 551 Low speed limit to abort transfer. See CURLOPT_LOW_SPEED_LIMIT(3) 555 Time to be below the speed to trigger low speed abort. See 603 Cap the download speed to this. See CURLOPT_MAX_RECV_SPEED_LARGE(3) 607 Cap the upload speed to this. See CURLOPT_MAX_SEND_SPEED_LARGE(3)
|
/curl/docs/ |
H A D | options-in-versions | 230 --speed-limit (-Y) 4.7 231 --speed-time (-y) 4.7
|
H A D | KNOWN_BUGS | 613 It has been observered that by making the speed limit less accurate we could
|