aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/libcurl-errors.3
AgeCommit message (Collapse)Author
2011-04-05return code cleanup: build, init and run-time errorsDaniel Stenberg
Stop the abuse of CURLE_FAILED_INIT as return code for things not being init related by introducing two new return codes: CURLE_NOT_BUILT_IN and CURLE_UNKNOWN_OPTION CURLE_NOT_BUILT_IN replaces return code 4 that has been obsoleted for several years. It is used for returning error when something is attempted to be used but the feature/option was not enabled or explictitly disabled at build-time. Getting this error mostly means that libcurl needs to be rebuilt. CURLE_FAILED_INIT is now saved and used strictly for init failures. Getting this problem means something went seriously wrong, like a resource shortage or similar. CURLE_UNKNOWN_OPTION is the option formerly known as CURLE_UNKNOWN_TELNET_OPTION (and the old name is still present, separately defined to be removed in a very distant future). This error code is meant to be used to return when an option is given to libcurl that isn't known. This problem would mostly indicate a problem in the program that uses libcurl.
2010-05-12FTP: WILDCARDMATCH/CHUNKING/FNMATCH addedPavel Raiskup
2010-03-24remove the CVSish $Id$ linesDaniel Stenberg
2010-01-22cleanups by Julien ChaffraixDaniel Stenberg
2010-01-01update copyright year since we are in 2010 nowDaniel Stenberg
2010-01-01- Ingmar Runge enhanced libcurl's FTP engine to support the PRET command. ThisDaniel Stenberg
command is a special "hack" used by the drftpd server, but even though it is a custom extension I've deemed it fine to add to libcurl since this server seems to survive and people keep using it and want libcurl to support it. The new libcurl option is named CURLOPT_FTP_USE_PRET, and it is also usable from the curl tool with --ftp-pret. Using this option on a server that doesn't support this command will make libcurl fail.
2008-12-28Anthony Bryan's man page cleanup in language and spellingDaniel Stenberg
2008-06-08the next release is now called 7.19.0Daniel Stenberg
2008-06-06- Axel Tillequin and Arnaud Ebalard added support for CURLOPT_ISSUERCERT, forDaniel Stenberg
OpenSSL, NSS and GnuTLS-built libcurls.
2008-06-06- Axel Tillequin and Arnaud Ebalard added support for CURLOPT_CRLFILE, forDaniel Stenberg
OpenSSL, NSS and GnuTLS-built libcurls.
2008-05-12- Introducing curl_easy_send() and curl_easy_recv(). They can be used to sendDaniel Stenberg
and receive data over a connection previously setup with curl_easy_perform() and its CURLOPT_CONNECT_ONLY option. The sendrecv.c example was added to show how they can be used.
2007-10-03I renamed the CURLE_SSL_PEER_CERTIFICATE error code toDaniel Stenberg
CURLE_PEER_FAILED_VERIFICATION (standard CURL_NO_OLDIES style), and made this return code get used by the previous SSH MD5 fingerprint check in case it fails.
2007-08-31Renamed the CURLE_FTP_SSL_FAILED error code to CURLE_USE_SSL_FAILED.Dan Fandrich
Renamed the curl_ftpssl enum to curl_usessl and its enumerated constants, creating macros for backward compatibility.
2007-08-30Renamed several libcurl error codes and options to make them more generalDan Fandrich
and allow reuse by multiple protocols. Several unused error codes were removed. In all cases, macros were added to preserve source (and binary) compatibility with the old names. These macros are subject to removal at a future date, but probably not before 2009. An application can be tested to see if it is using any obsolete code by compiling it with the CURL_NO_OLDIES macro defined. Documented some newer error codes in libcurl-error(3)
2007-07-13Daniel Cater: libcurl-errors needs updating to reflect a couple of deprecatedDaniel Stenberg
error codes
2007-05-08CURLE_FTP_COULDNT_STOR_FILE is now known as CURLE_UPLOAD_FAILED. This isDaniel Stenberg
because I just made SCP uploads return this value if the file size of the upload file isn't given with CURLOPT_INFILESIZE*. Docs updated to reflect this news, and a define for the old name was added to the public header file.
2006-10-21Armel Asselin separated CA cert verification problems from problems withDaniel Stenberg
reading the (local) CA cert file to let users easier pinpoint the actual problem. CURLE_SSL_CACERT_BADFILE (77) is the new libcurl error code.
2006-10-12Starting now, adding an easy handle to a multi stack that was already addedDaniel Stenberg
to a multi stack will cause CURLM_BAD_EASY_HANDLE to get returned.
2006-06-24corrected introduction version numberDaniel Stenberg
2006-04-26updated with more error codesDaniel Stenberg
2006-04-09CURLE_FTP_USER_PASSWORD_INCORRECT is not returned by libcurl anymore!Daniel Stenberg
2006-01-27typo pointed out by Mike GriffithsDaniel Stenberg
2006-01-04upcoming new error codeDaniel Stenberg
2005-05-16bad formattingDaniel Stenberg
2005-02-09add missing error codesDaniel Stenberg
2004-09-02clarify CURLE_SSL_CERTPROBLEM somewhatDaniel Stenberg
2004-08-11clarify that CURLE_FTP_USER_PASSWORD_INCORRECT might in fact get returnedDaniel Stenberg
even if user and password are correct
2004-04-27added curl_*_strerrorDaniel Stenberg
2004-04-26Kim Karlsson pointed out that error 57 was wrongly documentedDaniel Stenberg
2004-04-13additional infoDaniel Stenberg
2004-03-24Tor Arntsen's major ispell patchDaniel Stenberg
2004-03-08mention error 64Daniel Stenberg
2004-02-09Dominick Meglio's added share interface documentationDaniel Stenberg
2003-12-10Eric S. Raymond's fix of the NAME sectionDaniel Stenberg
2003-12-04cut out the wrong version blurbDaniel Stenberg
2003-11-06removed the _last since that is by definition not an error codeDaniel Stenberg
2003-11-04.TP and .B replaced with .IPDaniel Stenberg
2003-10-18Added a few undocumented errorsDaniel Stenberg
2002-12-18CURLE_HTTP_NOT_FOUND => CURLE_HTTP_RETURNED_ERRORDaniel Stenberg
2002-04-10corrected to new return codesDaniel Stenberg
2002-04-10error codes documentedDaniel Stenberg