Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Download/Upload speed is not accurate. #2200

Closed
julian0427 opened this issue Dec 29, 2017 · 0 comments
Closed

Download/Upload speed is not accurate. #2200

julian0427 opened this issue Dec 29, 2017 · 0 comments

Comments

@julian0427
Copy link

I did this

double download_speed = 0;
double timeval = 0;
double downloadSize = 0;
curl_easy_getinfo(curl, CURLINFO_SIZE_DOWNLOAD, &downloadSize);
curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME, &timeval);
curl_easy_getinfo(curl, CURLINFO_SPEED_DOWNLOAD, &download_speed);
printf("size: %f, time: %f, download speed: %f\n", downloadSize, timeval, download_speed);

When the elapsed time is much less than 1 seconds, the average download speed above is much less than actual. e.g.,
size: 14613.000000, time: 0.187000, download speed: 14613.000000

I expected the following

size: 14613.000000, time: 0.187000, download speed: 78144.385026

curl/libcurl version

7.56.1, 7.57.0
[curl -V output]

operating system

Windows7, Android

julian0427 pushed a commit to julian0427/curl that referenced this issue Dec 29, 2017
@julian0427 julian0427 reopened this Dec 29, 2017
julian0427 pushed a commit to julian0427/curl that referenced this issue Dec 29, 2017
bagder added a commit that referenced this issue Jan 1, 2018
to increase accuracy for quick transfers

Bug #2200
bagder added a commit that referenced this issue Jan 4, 2018
to increase accuracy for quick transfers

Fixes #2200
bagder added a commit that referenced this issue Jan 8, 2018
to increase accuracy for quick transfers

Fixes #2200
Closes #2206
@lock lock bot locked as resolved and limited conversation to collaborators May 6, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Development

No branches or pull requests

1 participant