Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-04-04 | oops, forgot to add test554 | Daniel Stenberg | |
2008-04-04 | Added test627 to test SFTP with CURLOPT_NOBODY | Dan Fandrich | |
2008-04-03 | - Setting CURLOPT_NOBODY to FALSE will now switch the HTTP request method to | Daniel Stenberg | |
GET simply because previously when you set CURLOPT_NOBODY to TRUE first and then FALSE you'd end up in a broken state where a HTTP request would do a HEAD by still act a lot like for a GET and hang waiting for the content etc. | |||
2008-04-03 | Scott Barrett added support for CURLOPT_NOBODY over SFTP | Daniel Stenberg | |
2008-04-03 | Made sure that curl_global_init is called in all the multithreaded | Dan Fandrich | |
example programs. | |||
2008-04-02 | removed unused var. | Gunter Knauf | |
2008-04-02 | removed double dependency. | Gunter Knauf | |
2008-04-01 | 128 - Phil Blundell's ares and ipv6 fix (feedback lacking) | Daniel Stenberg | |
removed 133 - Setting CURLOPT_NOBODY to "false" causes cURL to wait for content if a content-length header is read added | |||
2008-04-01 | Eetu contributed back in 2000... | Daniel Stenberg | |
2008-03-31 | 132 - Xponaut's CURLFORM_STREAM option to curl_formadd() | Daniel Stenberg | |
done | |||
2008-03-31 | moved CURL_CA_BUNDLE define to generated config.h. | Gunter Knauf | |
2008-03-31 | Removed the generated ca-bundle.h file. The verbatim value of $ca and | Michal Marek | |
$capath is known to configure, so it can be defined in config.h instead. | |||
2008-03-31 | expanded a comment around some of the new formpost callback usage | Daniel Stenberg | |
2008-03-31 | - Added CURLFORM_STREAM as a supported option to curl_formadd() to allow an | Daniel Stenberg | |
application to provide data for a multipart with the read callback. Note that the size needs to be provided with CURLFORM_CONTENTSLENGTH when the stream option is used. This feature is verified by the new test case 554. This feature was sponsored by Xponaut. | |||
2008-03-31 | Changed the makefile so the doc/examples/ programs are never built in a | Dan Fandrich | |
normal build/install (only with the 'make check' target), so that a build failure in the examples isn't fatal. | |||
2008-03-30 | added people from the 7.18.1 release announcement | Daniel Stenberg | |
2008-03-30 | back to a blank for 7.18.2 | Daniel Stenberg | |
2008-03-30 | start working on 7.18.2 | Daniel Stenberg | |
2008-03-30 | 7.18.1 | Daniel Stenberg | |
2008-03-30 | 132 - Xponaut's CURLFORM_STREAM option to curl_formadd() | Daniel Stenberg | |
2008-03-30 | I'm officially pushing the two remaining issues to the next release instead, | Daniel Stenberg | |
since they're still not clear enough to be to sort about before 7.18.1 | |||
2008-03-28 | Made the test work on perl 5.00 | Dan Fandrich | |
2008-03-27 | - Stephen Collyer pointed out that configure --with-libssh2 without a given | Daniel Stenberg | |
path didn't work properly but now it does! | |||
2008-03-27 | fix --with-libssh2 when given without path | Daniel Stenberg | |
2008-03-27 | - As found out and reported by Dan Petitt, libcurl didn't show progress/call | Daniel Stenberg | |
the progress callback for the first (potentially huge) piece of body data sent together with the POST request headers in the initial send(). | |||
2008-03-25 | spell! | Daniel Stenberg | |
2008-03-25 | - Made setting the CURLOPT_SSL_CTX_FUNCTION option return a failure in case | Daniel Stenberg | |
libcurl wasn't built to use OpenSSL as that is a prerequisite for this option to function! | |||
2008-03-25 | spell it out loudly and clearly that CURLOPT_SSL_CTX_FUNCTION is only | Daniel Stenberg | |
functional if libcurl is built against OpenSSL | |||
2008-03-22 | - Fixed the problem with doing a zero byte SCP transfer, verified with test | Daniel Stenberg | |
case 617 (which was added by Daniel Fandrich 5 Mar 2008). | |||
2008-03-21 | roadmap ahead | Daniel Stenberg | |
2008-03-20 | Jes reported the curl-config bug | Dan Fandrich | |
2008-03-20 | Fixed a problem where curl-config --protocols could erroneously show LDAPS | Dan Fandrich | |
support when curl didn't even have regular LDAP support. It looks like this could happen when the --enable-ldaps configure switch is given but configure couldn't find the LDAP headers or libraries. | |||
2008-03-20 | added --extvercmd parameter which can be used to specify an external command ↵ | Gunter Knauf | |
to display 'curl --version', f.e. with MinW32 crosscompile --extvercmd=/usr/bin/wine can be used. | |||
2008-03-20 | - Added --with-ca-path=DIRECTORY configure option to use an openSSL CApath by | Michal Marek | |
default instead of a ca bundle. The configure script will also look for a ca path if no ca bundle is found and no option given. - Fixed detection of previously installed curl-ca-bundle.crt | |||
2008-03-18 | Fixed an infinite loop when given an invalid SFTP quote command. | Dan Fandrich | |
2008-03-18 | Added test 626 to reproduce an infinite loop when given an invalid | Dan Fandrich | |
SFTP quote command reported by Vincent Le Normand, but left it disabled. | |||
2008-03-18 | - Added curl_easy_getinfo typechecker. | Michal Marek | |
- Added macros for curl_share_setopt and curl_multi_setopt to check at least the correct number of arguments. | |||
2008-03-17 | Mark the statement expr with __extension__ so that gcc -pedantic doesn't emit | Michal Marek | |
any hard-to-grasp warnings in curl_easy_setopt() calls in applications. Also delete superfluous semicolons. | |||
2008-03-15 | Spell the commands right | Dan Fandrich | |
2008-03-13 | Added tests 622-625 to test SFTP/SCP uploads. Test 625 was an attempt to | Dan Fandrich | |
reproduce the --ftp-create-dirs problem reported by Brian Ulm, but that seems to need a call curl_easy_reset() which this test case doesn't do. | |||
2008-03-13 | - Brian Ulm figured out that if you did an SFTP upload with | Daniel Stenberg | |
CURLOPT_FTP_CREATE_MISSING_DIRS to create a directory, and then re-used the handle and uploaded another file to another directory that needed to be created, the second upload would fail. Another case of a state variable that wasn't properly reset between requests. - I rewrote the 100-continue code to use a single state variable instead of the previous two ones. I think it made the logic somewhat clearer. | |||
2008-03-13 | - Brian Ulm figured out that if you did an SFTP upload with | Daniel Stenberg | |
CURLOPT_FTP_CREATE_MISSING_DIRS to create a directory, and then re-used the handle and uploaded another file to another directory that needed to be created, the second upload would fail. Another case of a state variable that wasn't properly reset between requests. | |||
2008-03-13 | Change the confusing two variables for the expect 100 continue stuff into | Daniel Stenberg | |
a single state variable to make the code easier to follow and understand. | |||
2008-03-13 | --ftp-create-dirs works on SFTP as well | Dan Fandrich | |
2008-03-13 | fix code that is normally #ifdef'ed out | Daniel Stenberg | |
2008-03-12 | Done: 125 - Michal Marek's typechecker-gcc work | Daniel Stenberg | |
2008-03-11 | updated according to the name resolve race condition fix just committed | Daniel Stenberg | |
2008-03-11 | - Dmitry Popov filed bug report #1911069 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1911069) that identified a race condition in the name resolver code when the DNS cache is shared between multiple easy handles, each running in simultaneous threads that could cause crashes. | |||
2008-03-11 | - Added a macro for curl_easy_setopt() that accepts three arguments and simply | Daniel Stenberg | |
does nothing with them, just to make sure libcurl users always use three arguments to this function. Due to its use of ... for the third argument, it is otherwise hard to detect abuse. | |||
2008-03-11 | Recommend passing a 1 as parameter to CURLOPT_SSLENGINE_DEFAULT rather than | Daniel Stenberg | |
a "dummy" just to get things as fixed as possible in case we ever get the urge to change this to actually mean something. |