我使用的是libcurl 7.25
版本,我使用curlopt_low_speed_limit
和curlopt_low_speed_time
选项来限制tftp传输时间。但卷曲不会在指定时间内超时,我的程序仍然存在。我确保curl_easy_setopt api返回curle_ok。
相同的程序适用于libcurl 7.33
版本和tftp传输超时。
你能告诉我为什么7.25版本不支持这些选项。任何遗失的补丁?或者我错过了什么?
curl_easy_setopt(curl, CURLOPT_LOW_SPEED_LIMIT, 1L);
curl_easy_setopt(curl, CURLOPT_LOW_SPEED_TIME, 85L);`
答案 0 :(得分:1)
TFTP: make the CURLOPT_LOW_SPEED* options work
....这意味着他们之前没有工作,但从那时起就有望工作。修复此错误的确切提交是here。