我正在尝试使用FTP下载文件,如果连接终止则在它之间,它应该从停止的地方恢复。我的问题是使用以下代码片段,如果我关闭连接然后再连接它,我能继续下载,但如果我在服务器站点这样做,那么我无法恢复下载,程序进入无限状态。
#include <stdio.h>
#include <curl/curl.h>
/*
* This is an example showing how to get a single file from an FTP server.
* It delays the actual destination file creation until the first write
* callback so that it won't create an empty file in case the remote file
* doesn't exist or something else fails.
*/
struct FtpFile {
const char *filename;
FILE *stream;
};
static size_t my_fwrite(void *buffer, size_t size, size_t nmemb, void *stream)
{
struct FtpFile *out=(struct FtpFile *)stream;
if(out && !out->stream) {
/* open file for writing */
out->stream=fopen(out->filename, "wb");
if(!out->stream)
return -1; /* failure, can't open file to write */
}
return fwrite(buffer, size, nmemb, out->stream);
}
int main(void)
{
CURL *curl;
CURLcode res;
struct FtpFile ftpfile={
"dev.zip", /* name to store the file as if succesful */
NULL
};
curl_global_init(CURL_GLOBAL_DEFAULT);
curl = curl_easy_init();
if(curl) {
/*
* You better replace the URL with one that works!
*/
curl_easy_setopt(curl, CURLOPT_URL,
"ftp://root:password@192.168.10.1/dev.zip");
/* Define our callback to get called when there's data to be written */
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, my_fwrite);
/* Set a pointer to our struct to pass to the callback */
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &ftpfile);
/* Switch on full protocol/debug output */
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
res = curl_easy_perform(curl);
/* always cleanup */
curl_easy_cleanup(curl);
if(CURLE_OK != res) {
/* we failed */
fprintf(stderr, "curl told us %d\n", res);
}
}
if(ftpfile.stream)
fclose(ftpfile.stream); /* close the local file */
curl_global_cleanup();
return 0;
}
任何人都可以告诉我,如果远程站点关闭连接,我该如何恢复下载。 任何帮助将不胜感激
谢谢,
Yuvi
答案 0 :(得分:2)
向ftpfile结构添加一个变量,以通过将CURLOPT_RESUME_FROM设置为已经下载的字节数来识别需要appeand的写入函数并告诉libcurl从目标文件的末尾恢复下载:
struct FtpFile
{
const char *pcInfFil;
FILE *pFd;
int iAppend;
};
主要是,如果你想恢复:
curl_easy_setopt(curl, CURLOPT_RESUME_FROM , numberOfBytesToSkip);
如果您的文件尚不存在,或者不是恢复下载而是新下载,请务必将CURLOPT_RESUME_FROM设置回0。
在my_fwrite中:
out->stream=fopen(out->filename, out->iAppend ? "ab":"wb");
P.S。如果您需要恢复文件大于长(2GB),请查看CURLOPT_RESUME_FROM_LARGE和CURL_OFF_T_C()
回应评论,要求提供有关如何知道转移失败的其他信息:
致电curl easy call call:
CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ... );
从curl上下文中检索:
CURLINFO_HEADER_SIZE
CURLINFO_CONTENT_LENGTH_DOWNLOAD
将它们加在一起并确保它们相等
CURLINFO_SIZE_DOWNLOAD
如果没有尝试重新执行上下文。
并且一定要使用最新版本的curl,它应该在60秒内没有从它正在下载的FTP服务器听到时超时。
答案 1 :(得分:0)
您可以使用CURLOPT_CONNECTTIMEOUT和CURLOPT_TIMEOUT参数来指定每个句柄的连接超时和最长执行时间。
另一种方式(仅当你使用简单接口而不是多接口时才有效)是使用套接字选项回调,你可以使用CURLOPT_SOCKOPTFUNCTION进行设置。在其中,您必须为SO_RCVTIMEO参数调用setsockopt(),以使连接在丢弃之前可以处于空闲状态的最长时间。即如果在最后5秒内没有收到任何字节,则丢弃连接。