我正在使用libcurl向本地服务发送API命令(即在127.0.0.1上).
该程序旨在替换shell脚本(使用curl程序.)
一切都在工作,除了在某处有1秒的延迟,即从我调用curl_easy_perform()到第一次调用read回调函数的时间已过去1秒.
curl_easy_setopt(curl,CURLOPT_URL,"http://127.0.0.1:12345/x"); curl_easy_setopt(curl,CURLOPT_UPLOAD,1); curl_easy_setopt(curl,CURLOPT_INFILESIZE,(long)getLengthOfCommandObject()); curl_easy_setopt(curl,CURLOPT_READFUNCTION,&myReadFunction); curl_easy_setopt(curl,CURLOPT_WRITEFUNCTION,&myWriteFunction);
但是如果我像这样从shell运行curl:
$curl --data-binary '<command>' http://127.0.0.1:12345/x
它会立即发送请求,而不会受到1秒延迟的影响.
可能导致延迟的原因是什么,我可以设置一个防止它的选项吗?
编辑服务器基于mongoose
解决方法
延迟的原因是:
> libcurl是sending an Expect: 100-Continue
header
>服务器(基于mongoose)是not configured to send 100 Continue
responses automatically.
> libcurl等待此响应最多1秒.如果在此时间之后没有收到它,那么它仍会继续发送请求正文.
客户端的解决方案是禁用Expect标头,如下所示:
headers = curl_slist_append(NULL,"Expect:"); curl_easy_setopt(curl,CURLOPT_HTTPHEADER,headers); // ... result = curl_easy_perform(curl); curl_slist_free_all(headers);