我设置了 CURLOPT_CONNECTTIMEOUT_MS = 200 和 CURLOPT_TIMEOUT_MS = 70 毫秒。但我看到 CURLINFO_TOTAL_TIME 大约是 220 毫秒。
根据 libcurl 文档,CURLOPT_TIMEOUT_MS 还包括连接超时。所以基本上我的 curl 调用总时间不应该超过 70 毫秒。但为什么它需要更多的控制权?
有人可以解释这种行为。
我正在使用 curl 7.19_02 C++ 库。
这是我的代码
CURL * curl;
curl = curl_easy_init();
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl,CURLOPT_CONNECTTIMEOUT_MS,200);
curl_easy_setopt(curl,CURLOPT_TIMEOUT_MS,70);
curl_easy_setopt(curl, CURLOPT_HEADER, 0);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writer);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &response);
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);
double tt = 0.0;
double ns = 0.0;
double ct = 0.0;
double pt = 0.0;
double st = 0.0;
curl_easy_perform(curl);
int curlRC = curl_easy_getinfo(curl, CURLINFO_TOTAL_TIME, &tt);
curlRC = curl_easy_getinfo(curl, CURLINFO_NAMELOOKUP_TIME, &ns);
curlRC = curl_easy_getinfo(curl, CURLINFO_CONNECT_TIME, &ct);
curlRC = curl_easy_getinfo(curl, CURLINFO_PRETRANSFER_TIME, &pt);
curlRC = curl_easy_getinfo(curl, CURLINFO_STARTTRANSFER_TIME, &st);
cout << "Curl timing info: Total: " << tt << endl << " Lookup: "<< ns << endl << " Connect: " << ct << "\n" << "pre transfer: " << pt << endl << "start transfer: " << st <<endl;
我得到的时间信息如下。请检查一下
卷发时间信息:总计:0.216793
查找:0.000999
连接:0.023199
预转账:0.023213
开始传输:0.216667
所以关键是,预传输和开始传输之间发生了什么?