Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-01-25 | fix compiler warnings for SSL-disabled builds | Daniel Stenberg | |
2007-01-24 | moved the SSL pending function to the proper place and name | Daniel Stenberg | |
2007-01-08 | Correct error code for CCC/SSL shutdown failure | Linus Nielsen Feltzing | |
2007-01-06 | Fix compilation errors when building without SSL | 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-12-16 | Brendan Jurd pointed out these typos | Daniel Stenberg | |
2006-11-11 | cleaned up Curl_write() and the sub functions it uses for various protocols. | Daniel Stenberg | |
They all now return ssize_t to Curl_write(). Unfortunately, Curl_read() is in a sorrier state but it too would benefit from a similar cleanup. | |||
2006-09-12 | Compiler warning fix | Yang Tse | |
2006-09-11 | - Fixed my breakage from earlier today so that doing curl_easy_cleanup() on a | Daniel Stenberg | |
handle that is part of a multi handle first removes the handle from the stack. - Added CURLOPT_SSL_SESSIONID_CACHE and --no-sessionid to disable SSL session-ID re-use on demand since there obviously are broken servers out there that misbehave with session-IDs used. | |||
2006-05-11 | silence warning | Daniel Stenberg | |
2006-05-10 | David McCreedy provided a fix for CURLINFO_LASTSOCKET that does extended | Daniel Stenberg | |
checks on the to-be-returned socket to make sure it truly seems to be alive and well. For SSL connection it (only) uses OpenSSL functions. | |||
2006-03-21 | Xavier Bouchoux made the SSL connection non-blocking for the multi interface | Daniel Stenberg | |
(when using OpenSSL). | |||
2005-08-11 | removed old debug left-over infof() call | Daniel Stenberg | |
2005-05-05 | use calloc instead of malloc to save a call to memset() | Daniel Stenberg | |
2005-05-04 | prevent memory leak when built SSL disabled | Daniel Stenberg | |
2005-04-19 | prevent compiler warning | Daniel Stenberg | |
2005-04-08 | re-arrange some code to prevent warnings on unreachable code | Daniel Stenberg | |
2005-04-07 | GnuTLS support added. There's now a "generic" SSL layer that we use all over | Daniel Stenberg | |
internally, with code provided by sslgen.c. All SSL-layer-specific code is then written in ssluse.c (for OpenSSL) and gtls.c (for GnuTLS). As far as possible, internals should not need to know what SSL layer that is in use. Building with GnuTLS currently makes two test cases fail. TODO.gnutls contains a few known outstanding issues for the GnuTLS support. GnuTLS support is enabled with configure --with-gnutls |