Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-11-03 | Olaf Stueben provided a patch that I edited slightly. It fixes the notorious | Daniel Stenberg | |
KNOWN_BUGS #25, which happens when a proxy closes the connection when libcurl has sent CONNECT, as part of an authentication negotiation. Starting now, libcurl will re-connect accordingly and continue the authentication as it should. | |||
2006-11-02 | update the counter | Daniel Stenberg | |
2006-11-02 | James Housley brought support for SCP transfers | Daniel Stenberg | |
2006-10-30 | start working on 7.16.1 | Daniel Stenberg | |
2006-10-29 | 7.16.0 material | Daniel Stenberg | |
2006-10-25 | Fixed CURLOPT_FAILONERROR to return CURLE_HTTP_RETURNED_ERROR even for the | Daniel Stenberg | |
case when 401 or 407 are returned, *IF* no auth credentials have been given. The CURLOPT_FAILONERROR option is not possible to make fool-proof for 401 and 407 cases when auth credentials is given, but we've now covered this somewhat more. You might get some amounts of headers transferred before this situation is detected, like for when a "100-continue" is received as a response to a POST/PUT and a 401 or 407 is received immediately afterwards. Added test 281 to verify this change. | |||
2006-10-21 | Nir Soffer for his Makefile.am fix | 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 | changes done the last few days | Daniel Stenberg | |
2006-10-17 | Please welcome our new haxx.se curl mirror, for really fast Swedish access. | Daniel Stenberg | |
2006-10-13 | The tagging of application/x-www-form-urlencoded POST body data sent | Dan Fandrich | |
to the CURLOPT_DEBUGFUNCTION callback has been fixed (it was erroneously included as part of the header). A message was also added to the command line tool to show when data is being sent, enabled when --verbose is used. | |||
2006-10-12 | Starting now, adding an easy handle to a multi stack that was already added | Daniel Stenberg | |
to a multi stack will cause CURLM_BAD_EASY_HANDLE to get returned. | |||
2006-10-12 | Jeff Pohlmeyer has been working with the hiperfifo.c example source code, | Daniel Stenberg | |
and while doing so it became apparent that the current timeout system for the socket API really was a bit awkward since it become quite some work to be sure we have the correct timeout set. Jeff then provided the new CURLMOPT_TIMERFUNCTION that is yet another callback the app can set to get to know when the general timeout time changes and thus for an application like hiperfifo.c it makes everything a lot easier and nicer. There's a CURLMOPT_TIMERDATA option too of course in good old libcurl tradition. | |||
2006-10-09 | new mirrors | Daniel Stenberg | |
2006-10-06 | Bogdan Nicula's hanging test case was converted to test case 533 and the test | Daniel Stenberg | |
now runs fine. | |||
2006-09-30 | Support for FTP third party transfers is now dropped | Daniel Stenberg | |
2006-09-28 | Reported in #1561470 (http://curl.haxx.se/bug/view.cgi?id=1561470), libcurl | Daniel Stenberg | |
would crash if a bad function sequence was used when shutting down after using the multi interface (i.e using easy_cleanup after multi_cleanup) so precautions have been added to make sure it doesn't any more - test case 529 was added to verify. | |||
2006-09-24 | Cory Nelson made libcurl use the WSAPoll() function if built for Windows | Daniel Stenberg | |
Vista (_WIN32_WINNT >= 0x0600) | |||
2006-09-23 | updated numbers | Daniel Stenberg | |
2006-09-23 | Mike Protts added --ftp-ssl-control to make curl use FTP-SSL, but only | Daniel Stenberg | |
encrypt the control connection and use the data connection "plain". | |||
2006-09-23 | Dmitriy Sergeyev provided a patch that made the SOCKS[45] code work better as | Daniel Stenberg | |
it now will read the full data sent from servers. The SOCKS-related code was also moved to the new lib/socks.c source file. | |||
2006-09-21 | (FTP) a failed upload does not invalidate the control connection | Daniel Stenberg | |
2006-09-20 | Armel Asselin fixed problems when you gave a proxy URL with user name and | Daniel Stenberg | |
empty password or no password at all. Test case 278 and 279 were added to verify. | |||
2006-09-12 | stuff we do | Daniel Stenberg | |
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-09-10 | curl_multi_socket() fix thanks to Jeff's test code | Daniel Stenberg | |
2006-09-09 | Michele Bini fixed how the hostname is put in NTLM packages. As servers | Daniel Stenberg | |
don't expect fully qualified names we need to cut them off at the first dot. | |||
2006-09-08 | Peter Sylvester cleaned up and fixed the getsockname() uses in ftp.c. Some | Daniel Stenberg | |
of them can be completetly removed though... | |||
2006-09-07 | Major overhaul introducing http pipelining support and shared connection | Daniel Stenberg | |
cache within the multi handle. | |||
2006-09-04 | spell fix and added Jari | Daniel Stenberg | |
2006-09-04 | proper credit | Daniel Stenberg | |
2006-09-03 | - "Dortik" (http://curl.haxx.se/bug/view.cgi?id=1551412) provided a patch that | Daniel Stenberg | |
while not fixing things very nicely, it does make the SOCKS5 proxy connection slightly better as it now acknowledges the timeout for connection and it no longer segfaults in the case when SOCKS requires authentication and you did not specify username:password. | |||
2006-08-31 | Dmitriy Sergeyev found and fixed a multi interface flaw when using asynch | Daniel Stenberg | |
name resolves. It could get stuck in the wrong state. | |||
2006-08-29 | David McCreedy added CURLOPT_SOCKOPTFUNCTION and CURLOPT_SOCKOPTDATA to | Daniel Stenberg | |
allow applications to set their own socket options. | |||
2006-08-25 | Armel Asselin reported that the 'running_handles' counter wasn't updated | Daniel Stenberg | |
properly if you removed a "live" handle from a multi handle with curl_multi_remove_handle(). | |||
2006-08-22 | David McCreedy fixed a remaining mistake from the August 19 TYPE change. | Daniel Stenberg | |
2006-08-22 | Peter Sylvester pointed out a flaw in the AllowServerConnect() in the FTP | Daniel Stenberg | |
code when doing pure ipv6 EPRT connections. | |||
2006-08-21 | clarify for what protocols the changes are | Daniel Stenberg | |
2006-08-19 | Based on a patch by Armel Asselin, the FTP code no longer re-issues the TYPE | Daniel Stenberg | |
command on subsequent requests on a re-used connection unless it has to. | |||
2006-08-18 | Armel Asselin fixed a crash in the FTP code when using SINGLECWD mode and | Daniel Stenberg | |
files in the root directory. | |||
2006-08-18 | Andrew Biggs pointed out a "Expect: 100-continue" flaw where libcurl didn't | Daniel Stenberg | |
send the whole request at once, even though the Expect: header was disabled by the application. An effect of this change is also that small (< 1024 bytes) POSTs are now always sent without Expect: header since we deem it more costly to bother about that than the risk that we send the data in vain. | |||
2006-08-16 | related info | Daniel Stenberg | |
2006-08-08 | Armel Asselin made the CURLOPT_PREQUOTE option work fine even when | Daniel Stenberg | |
CURLOPT_NOBODY is set true. PREQUOTE is then run roughly at the same place in the command sequence as it would have run if there would've been a transfer. | |||
2006-08-08 | Fixed a flaw in the "Expect: 100-continue" treatment. If you did two POSTs | Daniel Stenberg | |
on a persistent connection and allowed the first to use that header, you could not disable it for the second request. | |||
2006-08-07 | start working towards 7.15.6 | Daniel Stenberg | |
2006-08-02 | Mark Lentczner fixed how libcurl was not properly doing chunked encoding | Daniel Stenberg | |
if the header "Transfer-Encoding: chunked" was set by the application. http://curl.haxx.se/bug/view.cgi?id=1531838 | |||
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-07-27 | Yves Lejeune fixed so that replacing Content-Type: when doing multipart | Daniel Stenberg | |
formposts work exactly the way you want it (and the way you'd assume it works) | |||
2006-07-26 | David McCreedy added --ftp-ssl-reqd which makes curl *require* SSL for both | Daniel Stenberg | |
control and data connection, as the existing --ftp-ssl option only requests it. | |||
2006-07-26 | curl_multi_assign() and CURLMOPT_SOCKETFUNCTION proto change | Daniel Stenberg | |