curl使用curl_easy_perform导致线程或者进程卡死解决办法

描述:curl提供的curl_easy_perform调用方式是阻塞的,如果没有收到回复,则会导致线程或者进程一直阻塞,除非外界干预。

解决办法:curl提供了CURLOPT_LOW_SPEED_LIMIT  CURLOPT_LOW_SPEED_TIME  option,主要思想为:如果在指定时间传输速率超过设置的最低值,则会自动断开该链接。

举例:

                  curl_easy_setopt(curl, CURLOPT_LOW_SPEED_LIMIT , 50);

                  curl_easy_setopt(curl, CURLOPT_LOW_SPEED_TIME , 5);

                  res = curl_easy_perform(curl);

 

官方文档解释:

CURLOPT_LOW_SPEED_TIME - set low speed limit time period

 

CURLOPT_LOW_SPEED_LIMIT - set low speed limit in bytes per second

 

CURLOPT_LOW_SPEED_TIME  Pass a long as parameter. It contains the time in number seconds that the transfer speed should be below theCURLOPT_LOW_SPEED_LIMIT for the library to consider it too slow and abort.

 

 

具体可以参考curl官方文档:

 https://curl.haxx.se/libcurl/c/CURLOPT_TIMEOUT.html

https://curl.haxx.se/libcurl/c/CURLOPT_TIMEOUT.html

 

对于curl没有特别深入的学习,如果有更好的办法或者上面描述有误,请留言指正,谢谢。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值