I'm using libcurl 7.25
version, and I have used curlopt_low_speed_limit
and curlopt_low_speed_time
options to limit the tftp transfer time. But the curl does not timeout within the specified time and my program remains there. I made sure the curl_easy_setopt api returns curle_ok.
The same program works in libcurl 7.33
version and the tftp transfer timesout.
Can you please let me why the options are not supported in 7.25 version. Any missing patches?or Am I missing anything?
curl_easy_setopt(curl, CURLOPT_LOW_SPEED_LIMIT, 1L);
curl_easy_setopt(curl, CURLOPT_LOW_SPEED_TIME, 85L);`