linux 使用curl 提示 Protocol https not supported or disabled in libcurl

测试系统的匿名 https推送功能,发现不支持,提示信息:

2020-08-13 20:30:33:Protocol https not supported or disabled in libcurl
2020-08-13 20:30:34:Closing connection -1

 

重新编译了最新的 cares openssl curl 依然没有解决

url没有问题,不存在空格问题,于是开始找到打印这个提示的位置,增加打印看是什么条件不满足

没想到我加的打印并没有显示,之前就看到有人说会链到别的库,这回更加确信了

然后直接gdb 断点 curl_multi_perform 接口函数, 果然直接断到别人的 so里面了。。。

 

记录一下定位方法,长个记性!

你可能感兴趣的:(curl,linux)