curl tftp传输超时

时间:2015-11-18 10:55:25

标签: curl libcurl tftp

我使用的是libcurl 7.25版本,我使用curlopt_low_speed_limitcurlopt_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);`

1 个答案:

答案 0 :(得分:1)

changelog for 7.33.0提及:

TFTP: make the CURLOPT_LOW_SPEED* options work

....这意味着他们之前没有工作,但从那时起就有望工作。修复此错误的确切提交是here