Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-08-17 | - Jeff Pohlmeyer found out that if you ask libcurl to load a cookiefile (with | Daniel Stenberg | |
CURLOPT_COOKIEFILE), add a cookie (with CURLOPT_COOKIELIST), tell it to write the result to a given cookie jar and then never actually call curl_easy_perform() - the given file(s) to read was never read but the output file was written and thus it caused a "funny" result. - While doing some tests for the bug above, I noticed that Firefox generates large numbers (for the expire time) in the cookies.txt file and libcurl didn't treat them properly. Now it does. | |||
2005-08-13 | James Bursa identified a libcurl HTTP bug and a good way to repeat it. If a | Daniel Stenberg | |
site responds with bad HTTP response that doesn't contain any header at all, only a response body, and the write callback returns 0 to abort the transfer, it didn't have any real effect but the write callback would be called once more anyway. | |||
2005-07-12 | Adrian Schuur added trailer support in the chunked encoding stream. The | Daniel Stenberg | |
trailer is then sent to the normal header callback/stream. | |||
2005-05-29 | Eric Cooper reported about a problem with HTTP servers that responds with | Daniel Stenberg | |
binary zeroes within the headers. They confused libcurl to do wrong so the downloaded headers become incomplete. The fix is now verified with test case 262. | |||
2005-05-10 | Hm, this doesn't feel right. The error bits returned from Curl_select() can | Daniel Stenberg | |
be returned at times when we want to ignore them. Test case 160 fails on Linux, so I modify the comparison to check for _only_ the error bit set... | |||
2005-05-10 | me stupid, errno is not set for mere select()-exceptions | Daniel Stenberg | |
2005-05-10 | include protos to fix warnings | Daniel Stenberg | |
2005-05-10 | If Curl_select() returns with the error bit set, bail out. | Daniel Stenberg | |
2005-04-30 | there cannot be chunked problem when no_body (HEAD) is true since without | Daniel Stenberg | |
body there is nothing chunked-encoded! | |||
2005-04-26 | Cory Nelson's work on nuking compiler warnings when building on x64 with | Daniel Stenberg | |
VS2005. | |||
2005-04-08 | fixed the 304 response-with-content-length problem reported by Cory Nelson | 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 | |||
2005-02-16 | Christopher R. Palmer reported a problem with HTTP-POSTing using "anyauth" | Daniel Stenberg | |
that picks NTLM. Thanks to David Byron letting me test NTLM against his servers, I could quickly repeat and fix the problem. It turned out to be: When libcurl POSTs without knowing/using an authentication and it gets back a list of types from which it picks NTLM, it needs to either continue sending its data if it keeps the connection alive, or not send the data but close the connection. Then do the first step in the NTLM auth. libcurl didn't send the data nor close the connection but simply read the response-body and then sent the first negotiation step. Which then failed miserably of course. The fixed version forces a connection if there is more than 2000 bytes left to send. | |||
2005-02-14 | Rename Curl_pretransfersec() to *_second_connect() since it does not just | Daniel Stenberg | |
do pretransfer stuff like Curl_pretransfer(). | |||
2005-02-09 | David Byron identified the lack of SSL_pending() use, and this is my take | Daniel Stenberg | |
at fixing this issue. | |||
2005-02-09 | FTP code turned into state machine. Not completely yet, but a good start. | Daniel Stenberg | |
The tag 'before_ftp_statemachine' was set just before this commit in case of future need. | |||
2005-02-08 | Curl_wait_for_resolv() no longer disconnects on failure, but leaves that | Daniel Stenberg | |
operation to the caller. Disconnecting has the disadvantage that the conn pointer gets completely invalidated and this is not handled on lots of places in the code. | |||
2005-02-04 | David Byron pointed out that this -1 on the buffer size is pointless since | Daniel Stenberg | |
the buffer is already BUFSIZE +1 one big to fit the extra trailing zero. This change is reported to fix David's weird SSL problem... | |||
2005-01-29 | Using the multi interface, and doing a requsted a re-used connection that | Daniel Stenberg | |
gets closed just after the request has been sent failed and did not re-issue a request on a fresh reconnect like the easy interface did. Now it does! (define CURL_MULTIEASY, run test case 160) | |||
2005-01-21 | FTP third transfer support overhaul. See CHANGES for details. | Daniel Stenberg | |
2005-01-11 | Dan Torop cleaned up a few no longer used variables from David Phillips' | Daniel Stenberg | |
select() overhaul fix. | |||
2005-01-11 | Cyrill Osterwalder posted a detailed analysis about a bug that occurs when | Daniel Stenberg | |
using a custom Host: header and curl fails to send a request on a re-used persistent connection and thus creates a new connection and resends it. It then sent two Host: headers. Cyrill's analysis was posted here: http://curl.haxx.se/mail/archive-2005-01/0022.html | |||
2004-12-05 | Dan Fandrich added the --disable-cookies option to configure to build | Daniel Stenberg | |
libcurl without cookie support. This is mainly useful if you want to build a minimalistic libcurl with no cookies support at all. Like for embedded systems or similar. | |||
2004-12-03 | Bug report #1078066: when a chunked transfer was pre-maturely closed exactly | Daniel Stenberg | |
at a chunk boundary it was not considered an error and thus went unnoticed. Added test case 207 to verify. | |||
2004-11-26 | I changed my mind. Remove ioctl() macro in setup.h instead. | Gisle Vanem | |
2004-11-26 | Renamed urldata.h members 'ioctl*' to 'ioctrl*' due to | Gisle Vanem | |
clash with djgpp ioctl() macro in setup.h. | |||
2004-11-26 | As reported in Mandrake's bug tracker bug 12289 | Daniel Stenberg | |
(http://qa.mandrakesoft.com/show_bug.cgi?id=12289), curl would print a newline to "finish" the progress meter after each redirect and not only after a completed transfer. | |||
2004-11-24 | HTTP "auth done right". See lib/README.httpauth | Daniel Stenberg | |
2004-11-19 | David Phillips' FD_SETSIZE fix | Daniel Stenberg | |
2004-11-18 | Dan Fandrich fix: eliminates some pedantic CodeWarrior compiler warnings and | Daniel Stenberg | |
errors. | |||
2004-11-02 | Paul Nolan fix to make libcurl build nicely on Windows CE | Daniel Stenberg | |
2004-10-25 | Tomas Pospisek filed bug report #1053287 that proved -C - and --fail on a | Daniel Stenberg | |
file that was already completely downloaded caused an error, while it doesn't if you don't use --fail! I added test case 194 to verify the fix. Grrr. CURLOPT_FAILONERROR is now added to the list stuff to remove in libcurl v8 due to all the kludges needed to support it. | |||
2004-10-19 | Alexander Krasnostavsky made it possible to make FTP 3rd party transfers with | Daniel Stenberg | |
both source and destination being the same host. It can be useful if you want to move a file on a server or similar. | |||
2004-10-06 | Chih-Chung Chang reported that if you use CURLOPT_RESUME_FROM and enabled | Daniel Stenberg | |
CURLOPT_FOLLOWLOCATION, libcurl reported error if a redirect happened even if the new URL would provide the resumed file. Test case 188 added to verify the fix (together with existing test 99). | |||
2004-09-16 | Location: problem with bad original URL, identified in bug report #1029478 | Daniel Stenberg | |
2004-09-13 | no longer includes getdate.h, there's no need for it | Daniel Stenberg | |
2004-08-30 | Make "Proxy-Connection: close" close the current proxy connection, as | Daniel Stenberg | |
Roman Koifman found out. | |||
2004-08-20 | Alexander Krasnostavsky made the write callback get called even when a zero | Daniel Stenberg | |
byte file is downloaded. | |||
2004-08-10 | more typecasts to please picky compilers | Daniel Stenberg | |
2004-08-09 | typecast the assigment of an unsigned variable to a signed one to prevent | Daniel Stenberg | |
picky warnings | |||
2004-08-09 | ->fread() should get a size_t variable passed in | Daniel Stenberg | |
2004-07-16 | deal with negative Content-Length: headers by ignoring the info | Daniel Stenberg | |
2004-07-01 | Variable type cleanups to please the picky MIPSPro compiler. | Daniel Stenberg | |
2004-06-24 | Source cleanups. The major one being that we now _always_ use a Curl_addrinfo | Daniel Stenberg | |
linked list for name resolved data, even on hosts/systems with only IPv4 stacks as this simplifies a lot of code. | |||
2004-06-22 | pass an int pointer when it expects an int pointer... | Daniel Stenberg | |
2004-06-21 | The read callback can now return CURL_READFUNC_ABORT to stop a transfer. | Daniel Stenberg | |
2004-06-16 | Alexander Krasnostavsky fixed a flaw in the 3rd party transfer code that | Daniel Stenberg | |
didn't properly check return code. | |||
2004-06-09 | Alexander Krasnostavsky's fix to make libcurl build fine with configure | Daniel Stenberg | |
--disable-http, which thus builds a libcurl without HTTP support. | |||
2004-06-03 | Alexander Krasnostavsky's FTP third party transfer (proxy) support | Daniel Stenberg | |
2004-05-25 | initial support for "uploading" to file:// URLs | Daniel Stenberg | |