Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-06-21 | made Curl_nss_send() take const data to kill compiler warning | Daniel Stenberg | |
2008-06-21 | Edited some test keywords for consistency | Dan Fandrich | |
2008-06-20 | Modified configuration script to actually verify if the compiler is good | Yang Tse | |
enough at detecting compilation errors or at least it has been properly configured to do so. Configuration heavily depends on this capability, so if this compiler sanity check fails the configuration process will now fail. | |||
2008-06-20 | - Phil Pellouchoud found a case where libcurl built with NSS failed to | Daniel Stenberg | |
handshake with a SSLv2 server, and it turned out to be because it didn't recognize the cipher named "rc4-md5". In our list that cipher was named plainly "rc4". I've now added rc4-md5 to work as an alias as Phil reported that it made things work for him again. | |||
2008-06-20 | remove leftover proto that isn't used, I made it a macro instead | Daniel Stenberg | |
2008-06-20 | - Hans-Jurgen May pointed out that trying SCP or SFTP over a SOCKS proxy | Daniel Stenberg | |
crashed libcurl. This is now addressed by making sure we use "plain send" internally when doing the socks handshake instead of the Curl_write() function which is designed to use the "target" protocol. That's then SCP or SFTP in this case. I also took the opportunity and cleaned up some ssh- related #ifdefs in the code for readability. | |||
2008-06-19 | minor language fix | Daniel Stenberg | |
2008-06-19 | - Christopher Palow fixed a curl_multi_socket() issue which previous caused | Daniel Stenberg | |
libcurl to not tell the app properly when a socket was closed (when the name resolve done by c-ares is done) and then immediately re-created and put to use again (for the actual connection). Since the closure will make the "watch status" get lost in several event-based systems libcurl will need to tell the app about this close/re-create case. | |||
2008-06-19 | - Dengminwen found a bug in the connection re-use function when using the | Daniel Stenberg | |
multi interface with pipelining enabled as it would wrongly check for, detect and close "dead connections" even though that connection was already in use! | |||
2008-06-19 | Removed the #define of ciphernum since keeping a define updated to be the | Daniel Stenberg | |
number of entries in a provided table is doomed to fail in the long run. Now we use the NUM_OF_CIPHERS define instead to figure out the amount. | |||
2008-06-19 | s/strcasecmp/strequal to make it more portable | Daniel Stenberg | |
2008-06-19 | Always use $LOGDIR when referring to the log directory. | Dan Fandrich | |
2008-06-19 | Fixed a memory leak in the command-line tool that caused a valgrind error. | Dan Fandrich | |
2008-06-19 | Added SSH failure test cases 628-632 | Dan Fandrich | |
2008-06-18 | - Rob Crittenden brought a fix for the NSS layer that makes libcurl no longer | Daniel Stenberg | |
always fire up a new connection rather than using the existing one when the multi interface is used. Original bug report: https://bugzilla.redhat.com/show_bug.cgi?id=450140 | |||
2008-06-18 | removed warning about unused argument by simply removing that argument from | Daniel Stenberg | |
the check_issuer_cert() proto | |||
2008-06-18 | check_issuer_cert() now builds and there's one warning less. Still one compiler | Daniel Stenberg | |
warning in the code though but we need NSS' base64.h header for that and we don't currently have a suitable way to include it as our own base64.h header kind of "blocks" it. | |||
2008-06-18 | No longer break out of a shell "for" statement from inside | Yang Tse | |
AC_FOO_IFELSE macros, otherwise temp files are not removed. Identation adjustment. | |||
2008-06-13 | In checkPendPipeline() we can't be setting the TIMER_CONNECT correctly as that | Daniel Stenberg | |
is for the TCP connect. I changed it to TIMER_PRETRANSFER which seems to be what was intended here. | |||
2008-06-13 | fixed the language somewhat | Daniel Stenberg | |
2008-06-13 | Fixed curl-config --ca which wasn't being exported by configure. | Dan Fandrich | |
2008-06-12 | Added IPv6 keywords for some more tests that require IPv6 networking support | Dan Fandrich | |
2008-06-12 | fixed bad infof() usage! | Daniel Stenberg | |
2008-06-12 | added the versions of a range of build tools that we want to remain to work | Daniel Stenberg | |
2008-06-12 | My first attempt at documenting what we try to support and make curl run with | Daniel Stenberg | |
in regard to C standard, third party libraries and operating systems etc. | |||
2008-06-11 | - I did a cleanup of the internal generic SSL layer and how the various SSL | Daniel Stenberg | |
libraries are supported. Starting now, each underlying SSL library support code does a set of defines for the 16 functions the generic layer (sslgen.c) uses (all these new function defines use the prefix "curlssl_"). This greatly simplified the generic layer in readability by involving much less #ifdefs and other preprocessor stuff and should make it easier for people to make libcurl work with new SSL libraries. Hopefully I can later on document these 16 functions somewhat as well. I also made most of the internal SSL-dependent functions (using Curl_ssl_ prefix) #defined to nothing when no SSL support is requested - previously they would unnecessarily call mostly empty functions. | |||
2008-06-11 | fix compiler warning: conversion from `pointer to void' to `pointer to int | Yang Tse | |
function(pointer to char,int,int,pointer to void)' is compiler dependent | |||
2008-06-11 | enable additional CFLAGS from commandline. | Gunter Knauf | |
2008-06-10 | fix warning in GnuTLS build by making sure Curl_gtls_send() takes a const | Daniel Stenberg | |
void * | |||
2008-06-10 | - I made the OpenSSL code build again with OpenSSL 0.9.6. The CRLFILE | Daniel Stenberg | |
functionality killed it due to its unconditional use of X509_STORE_set_flags... | |||
2008-06-09 | CURLOPT_CRLFILE and CURLOPT_ISSUERCERT are new string options | Michal Marek | |
2008-06-09 | fix pkg-config reporting of private libraries needed for static linking | Yang Tse | |
2008-06-08 | enable additional CFLAGS from commandline. | Gunter Knauf | |
2008-06-08 | 7.19.0 is next | Daniel Stenberg | |
2008-06-08 | the next release is now called 7.19.0 | Daniel Stenberg | |
2008-06-08 | - curl the tool now deals with its command line options somewhat differently! | Daniel Stenberg | |
All boolean options (such as -O, -I, -v etc), both short and long versions, now always switch on/enable the option named. Using the same option multiple times thus make no difference. To switch off one of those options, you need to use the long version of the option and type --no-OPTION. Like to disable verbose mode you use --no-verbose! - Added --remote-name-all to curl, which if used changes the default for all given URLs to be dealt with as if -O is used. So if you want to disable that for a specific URL after --remote-name-all has been used, you muse use -o - or --no-remote-name. | |||
2008-06-08 | use our *printf functions only. | Gunter Knauf | |
2008-06-06 | Moved all changes from 2007 from CHANGES to CHANGES.0 | Daniel Stenberg | |
2008-06-06 | code style cleanup | Daniel Stenberg | |
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 | MSVC does build Windows native targets | Yang Tse | |
2008-06-06 | mention added in 7.18.3 | Daniel Stenberg | |
2008-06-06 | - Axel Tillequin and Arnaud Ebalard added support for CURLOPT_CRLFILE, for | Daniel Stenberg | |
OpenSSL, NSS and GnuTLS-built libcurls. | |||
2008-06-06 | - Added CURLINFO_PRIMARY_IP as a new information retrievable with | Daniel Stenberg | |
curl_easy_getinfo. It returns a pointer to a string with the most recently used IP address. Modified test case 500 to also verify this feature. The implementing of this feature was sponsored by Lenny Rachitsky at NeuStar. | |||
2008-06-05 | 7.18.2 is done now | Daniel Stenberg | |
2008-06-05 | Mention the minimum Symbian OS version required. | Dan Fandrich | |
2008-06-04 | Mention a few options that require an argument in --help | Dan Fandrich | |
2008-06-04 | start working on 7.18.3! | Daniel Stenberg | |
2008-06-04 | new contributors from the 7.18.2 release | Daniel Stenberg | |
2008-06-04 | 7.18.2 | Daniel Stenberg | |