Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2008-06-03 | Fixed a problem where telnet data would be lost if an EWOULDBLOCK | Dan Fandrich | |
condition were encountered. | |||
2008-06-03 | Fixed typo in comment | Dan Fandrich | |
2008-06-01 | curl returns 0 for these options now | Daniel Stenberg | |
2008-06-01 | now returns 0 | Daniel Stenberg | |
2008-06-01 | (committed this for Marty Kuhrt:) | Daniel Stenberg | |
- Updated main.c to return CURLE_OK if PARAM_HELP_REQUESTED was returned from getparameter instead of CURLE_FAILED_INIT. No point in returning an error if --help or --version were requested. | |||
2008-06-01 | return CURLE_OK instead of CURLE_FAILED_INIT if PARAM_HEKP_REQUESTED ↵ | Marty Kuhrt | |
returned by getparameter | |||
2008-05-31 | Fix problem: 'result' may be used uninitialized. | Yang Tse | |
Issue detected by Guenter Knauf's NetWare autobuild. | |||
2008-05-30 | updated to match curlmsg.msg 1.7 | Marty Kuhrt | |
2008-05-30 | resync with curl.h messages | Marty Kuhrt | |
2008-05-30 | resync with curl.h curle_ messages | Marty Kuhrt | |
2008-05-30 | Brad House fixed a missing header file inclusion in adig sample program | Yang Tse | |
2008-05-29 | Added a new "13. Web Login" chapter | Daniel Stenberg | |
2008-05-29 | start working on 1.5.3 | Daniel Stenberg | |
2008-05-29 | 1.5.2 | Daniel Stenberg | |
2008-05-28 | Fixed 142 and 143 | Daniel Stenberg | |
Moved 144 to 7.18.3 instead | |||
2008-05-28 | - Emil Romanus found a problem and helped me repeat it. It occured when using | Daniel Stenberg | |
the curl_multi_socket() API with HTTP pipelining enabled and could lead to the pipeline basically stalling for a very long period of time until it took off again. | |||
2008-05-28 | - Jeff Weber reported memory leaks with aborted SCP and SFTP transfers and | Daniel Stenberg | |
provided excellent repeat recipes. I fixed the cases I managed to reproduce but Jeff still got some (SCP) problems even after these fixes: http://curl.haxx.se/mail/lib-2008-05/0342.html | |||
2008-05-27 | Known bug #55, libcurl fails to build with MIT Kerberos for Windows (KfW) | Yang Tse | |
due to KfW's library header files exporting symbols/macros that should be kept private to the KfW library. See ticket #5601 at http://krbdev.mit.edu/rt/ | |||
2008-05-26 | - Bug report #1973352 (http://curl.haxx.se/bug/view.cgi?id=1973352) identified | Daniel Stenberg | |
how the HTTP redirect following code didn't properly follow to a new URL if the new url was but a query string such as "Location: ?moo=foo". Test case 1031 was added to verify this fix. | |||
2008-05-26 | I'd like to see this fixed for the 7.18,2: | Daniel Stenberg | |
144 - Help apps use 64bit/LFS libcurl | |||
2008-05-26 | Andreas Faerber and Scott McCreary made (lib)curl build for the Haiku OS | Daniel Stenberg | |
2008-05-26 | Added Haiku OS, sorted the list of i386 OSes | Daniel Stenberg | |
2008-05-26 | fix compiler warning: unreferenced formal parameter | Yang Tse | |