Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 cpp 中使用 curl_multi_info_read。
如果其他设备没有响应请求,我希望得到 curl 错误代码 CURLE_COULDNT_CONNECT,但我得到错误代码 CURLE_WRITE_ERROR(从 msg->data.result 检索)。
为什么我会收到错误 CURLE_WRITE_ERROR?
CURLE_WRITE_ERROR (23)
将接收到的数据写入本地文件时发生错误,或者从写入回调将错误返回给 libcurl。
请发布您的代码,以便我们提供帮助。