Этот коммит содержится в:
TekotovaVA
2023-05-31 22:14:41 +03:00
родитель 6fdd07f649
Коммит dc9285cbcb

Просмотреть файл

@@ -56,7 +56,11 @@ download(const string& address) {
cout << curl_easy_strerror(res);
exit(1);
}
curl_off_t speed;
res = curl_easy_getinfo(curl, CURLINFO_SPEED_DOWNLOAD_T, &speed);
if (!res) {
fprintf(stderr, "Download speed %" CURL_FORMAT_CURL_OFF_T " bytes/sec\n", speed);
}
curl_easy_cleanup(curl);
}