CURLE_FTP_WEIRD_PASV_REPLY(13) libcurl的失败作为一个PASV或EPSV命令从服务器得到一个合理的结果。服务器是有缺陷的。 CURLE_FTP_WEIRD_227_FORMAT(14) FTP服务器返回一个227行作为一个PASV命令的响应。如果libcurl的无法解析该行,此返回代码被传递回。 CURLE_FTP_CANT_GET_HOST(15) 内部故障查找主机使用新...
CURLE_USE_SSL_FAILED (64) – 请求的 FTP SSL 级别失败 CURLE_SEND_FAIL_REWIND (65) – 进行发送操作时,curl 必须回转数据以便重新传输,但回转操作未能成功 CURLE_SSL_ENGINE_INITFAILED (66) – SSL 引擎初始化失败 CURLE_LOGIN_DENIED (67) – 远程服务器拒绝 curl 登录(7.13.1 新增功能) CURLE_T...
CURLcode 几乎所有“简单”接口函数都返回CURLcode错误代码。无论如何,使用curl_easy_setopt选项CURLOPT_ERRORBUFFER是一个好主意,因为它将为您提供一个人类可读的错误字符串,可以提供有关错误原因的更多详细信息,而不仅仅是错误代码。可以调用curl_easy_strerror从给定的CURLcode编号中获取错误字符串。 CURLcode是以下之...
curl_easy_strerror(3)can be called to get an error string from a given CURLcode number. CURLcode is one of the following: CURLE_OK (0) All fine. Proceed as usual. CURLE_UNSUPPORTED_PROTOCOL (1) The URL you passed to libcurl used a protocol that this libcurl does not support. The ...
CURLcode is one of the following:CURLE_OK (0) All fine. Proceed as usual.CURLE_UNSUPPORTED_PROTOCOL (1) The URL you passed to libcurl used a protocol that this libcurl does not support. The support might be a compile-time option that you didn’t use, it can be a misspelled protocol...
After connecting to a FTP server, libcurl expects to get a certain reply back. This error code implies that it got a strange or bad reply. The given remote server is probably not an OK FTP server. CURLE_REMOTE_ACCESS_DENIED (9)
CURLcode的定义 经常性遇到libcurl的问题,而且都特别奇怪,记录一下CURLcode的定义: http://curl.haxx.se/libcurl/c/libcurl-errors.html 代码语言:javascript 复制 #include<curl/curl.h>enumCURLcode{CURLE_OK=0,CURLE_UNSUPPORTED_PROTOCOL,/* 1 */CURLE_FAILED_INIT,/* 2 */CURLE_URL_MALFORMAT,/* 3 ...
#13465 openedApr 24, 2024byschicho 1 examples/websocket.c: check for CURLE_AGAIN on recv_pong()documentationWebSocket #12980 openedFeb 24, 2024byTheldus 3 hostcache: Cache negative name resolvesname lookupDNS and related tech #12406 openedNov 26, 2023byzagor ...
*/ typedef int (*curl_prereq_callback)(void *clientp, char *conn_primary_ip, char *conn_local_ip, int conn_primary_port, int conn_local_port); /* Return code for when the pre-request callback has terminated without any errors */ #define CURL_PREREQFUNC_OK 0 /* Return code for ...
CURLcode 是以下之一: CURLE_OK (0) 一切都很好。照常进行。 CURLE_UNSUPPORTED_PROTOCOL (1) 您传递给 libcurl 的 URL 使用了此 libcurl 不支持的协议。支持可能是您没有使用的编译时选项,它可能是拼写错误的协议字符串或只是没有代码的协议 libcurl。