我正在开发一个FUSE驱动程序,当我将它作为守护进程运行时(没有-f或-d标志),通过libcurl发出的所有https请求都会失败.我能够通过发出https请求,分叉和返回父进程,然后从新进程发出第二个请求来重现错误.如果我删除fork调用或发出http请求,则没有错误.
我现在正在制作官方错误报告,但是有谁知道我怎么能让它发挥作用?
注意:如果您运行我的程序,请管道到/ dev / null,因为libcurl默认将接收到的缓冲区发送到stdout.
#include Failed\n");
return 1;
}
curl_easy_cleanup(handle);
if(fork())
return 0;
handle = curl_easy_init();
curl_easy_setopt(handle,errBuf);
if ((err = curl_easy_perform(handle)))
{
log(string("curl error while sending: (") + to_string(err) + ") " + curl_easy_strerror(err) + "\n");
log(errBuf);
}
else
log("no error\n");
return 0;
}
……和输出:
$g++ -std=c++11 main.cpp -lcurl
$rm -f log
$./a.out > /dev/null
$cat log
curl error while sending: (35) SSL connect error
A PKCS #11 module returned CKR_DEVICE_ERROR,indicating that a problem has occurred with the token or slot.
我正在使用(最新的)libcurl版本7.29.0,(最新的)openssl版本1.0.1e,我正在使用内核版本3.7.4运行Fedora 18.
最佳答案
原文链接:https://www.f2er.com/linux/439952.html