Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-06-06 | - Axel Tillequin and Arnaud Ebalard added support for CURLOPT_ISSUERCERT, for | Daniel Stenberg | |
OpenSSL, NSS and GnuTLS-built libcurls. | |||
2008-06-06 | - Axel Tillequin and Arnaud Ebalard added support for CURLOPT_CRLFILE, for | Daniel Stenberg | |
OpenSSL, NSS and GnuTLS-built libcurls. | |||
2008-05-12 | - Introducing curl_easy_send() and curl_easy_recv(). They can be used to send | Daniel 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-11-07 | if () => if() | Daniel Stenberg | |
while () => while() and some other minor re-indentings | |||
2007-10-03 | I renamed the CURLE_SSL_PEER_CERTIFICATE error code to | Daniel 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-31 | Renamed 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-31 | Made some of the error strings returned by the *strerror functions more | Dan Fandrich | |
generic, and more consistent with each other. | |||
2007-08-30 | Renamed several libcurl error codes and options to make them more general | Dan 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-05-08 | CURLE_FTP_COULDNT_STOR_FILE is now known as CURLE_UPLOAD_FAILED. This is | Daniel 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. | |||
2007-02-21 | curlassert macro replaced with DEBUGASSERT macro defined in setup_once.h | Yang Tse | |
2007-02-15 | Daniel Mirchandani fix to make libcurl build nicely on Winsock | Yang Tse | |
build targets when --disable-verbose is specified. | |||
2007-01-08 | Correct error code for CCC/SSL shutdown failure | Linus Nielsen Feltzing | |
2007-01-05 | - Linus Nielsen Feltzing introduced the --ftp-ssl-ccc command line option to | Daniel Stenberg | |
curl that uses the new CURLOPT_FTP_SSL_CCC option in libcurl. If enabled, it will make libcurl shutdown SSL/TLS after the authentication is done on a FTP-SSL operation. | |||
2006-11-02 | James Housley brought support for SCP transfers | Daniel Stenberg | |
2006-10-21 | Armel Asselin separated CA cert verification problems from problems with | Daniel 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-18 | Check for USE_WINSOCK instead of WIN32 where the check was done | Yang Tse | |
to verify winsock API availability. | |||
2006-10-15 | Replace ";;" with ";". | Gisle Vanem | |
2006-10-11 | Remove redundant __CYGWIN__ symbol check | Yang Tse | |
2006-08-01 | Maciej Karpiuk fixed a crash that would occur if we passed Curl_strerror() | Daniel Stenberg | |
an unknown error number on glibc systems. http://curl.haxx.se/bug/view.cgi?id=1532289 | |||
2006-04-26 | Added revision ID-tag. | Gisle Vanem | |
2006-04-26 | Fixed signed/unsigned convertion errors in Salford-C. | Gisle Vanem | |
#ifdef around WSAEDISCON in strerror.c. | |||
2006-04-10 | First curl_multi_socket() commit. Should primarily be considered as an internal | Daniel Stenberg | |
code rearrange to fit the future better. | |||
2006-04-09 | CURLE_FTP_USER_PASSWORD_INCORRECT is not returned by libcurl anymore! | Daniel Stenberg | |
2006-04-07 | First commit of David McCreedy's EBCDIC and TPF changes. | Daniel Stenberg | |
2005-12-02 | Yang Tse's fix to only provide the proto if there is such a function and | Daniel Stenberg | |
we didn't find any proto | |||
2005-09-02 | John Kelly added TFTP support to libcurl. A bunch of new error codes was | Daniel Stenberg | |
added. TODO: add them to docs. add TFTP server to test suite. add TFTP to list of protocols whereever those are mentioned. | |||
2005-07-21 | Fixed some typos in output messages. | Dan Fandrich | |
2005-05-18 | The configure check for strerror_r() failed to detect the proper API at | Daniel Stenberg | |
times, like on my HP-UX 10.20 tests. And then lib/strerror.c badly assumed the glibc version if the posix define wasn't set (since it _had_ found a strerror_r). | |||
2005-04-26 | Cory Nelson's work on nuking compiler warnings when building on x64 with | Daniel Stenberg | |
VS2005. | |||
2005-03-15 | prevent compiler warning | Daniel Stenberg | |
2005-03-14 | silence compiler warnings for mingw win32 builds --enable-debug | Daniel Stenberg | |
2005-02-09 | Handle CURLE_LOGIN_DENIED in strerror.c. | Gisle Vanem | |
For ftp only? | |||
2005-01-11 | Renamed easy.h and multi.h to easyif.h and multiif.h to make sure they don't | Daniel Stenberg | |
shadow our public headers with the former names. | |||
2005-01-11 | ".\lib\multi.h" shadows for <curl/multi.h> in Watcom. | Gisle Vanem | |
Force including ../include/curl/multi.h. | |||
2004-12-13 | Added handling of CURLINFO_SSL_ENGINES; | Gisle Vanem | |
Added Curl_SSL_engines_list(), cleanup SSL in url.c (no HAVE_OPENSSL_x etc.). | |||
2004-12-11 | fixed error message | Daniel Stenberg | |
2004-11-24 | added missing new error string | Daniel Stenberg | |
2004-11-11 | Dan Fandrich added --disable-verbose | Daniel Stenberg | |
2004-11-02 | Paul Nolan fix to make libcurl build nicely on Windows CE | Daniel Stenberg | |
2004-10-05 | avoid warning for unused variable | Daniel Stenberg | |
2004-10-05 | use idna_strerror() if it is available (only in libidn 0.5.6 or later) | Daniel Stenberg | |
2004-10-02 | Gisle Vanem provided code that displays an error message when the (libidn | Daniel Stenberg | |
based) IDN conversion fails. This is really due to a missing suitable function in the libidn API that I hope we can remove once libidn gets a function like this. | |||
2004-09-19 | kill trailing whitespace and clarify a few errors | Daniel Stenberg | |
2004-05-14 | added string for the new share error code | Daniel Stenberg | |
2004-05-06 | if no strerror_r prototype is found, we provide our own to prevent picky | Daniel Stenberg | |
compilers to warn | |||
2004-04-26 | major update of the error strings | Daniel Stenberg | |
2004-04-06 | Gisle Vanem caught me breaking the windows version of Curl_strerror() | Daniel Stenberg | |
2004-04-06 | remove the general use of sys_nerr | Daniel Stenberg | |
2004-03-29 | re-indented to use curl-standard source formatting | Daniel Stenberg | |
2004-03-25 | win32 doesn't need and even doesn't build if we extern declare sys_nerr | Daniel Stenberg | |