Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-05-25 | - bug report #2796358 (http://curl.haxx.se/bug/view.cgi?id=2796358) pointed | Daniel Stenberg | |
out that the cookie parser would leak memory when it parses cookies that are received with domain, path etc set multiple times in the same header. While such a cookie is questionable, they occur in the wild and libcurl no longer leaks memory for them. I added such a header to test case 8. | |||
2009-05-22 | Removed some obsolete digest code that caused a valgrind error in test 551. | Dan Fandrich | |
2009-05-19 | changed ssh.c to use HAVE_LIBSSH2_SESSION_BLOCK_DIRECTION define provided by ↵ | Gunter Knauf | |
libssh2.h; removed related define block from ssh.h. | |||
2009-05-19 | - Kamil Dudka brought the patch from the Redhat bug entry | Daniel Stenberg | |
https://bugzilla.redhat.com/show_bug.cgi?id=427966 which was libcurl closing a bad file descriptor when closing down the FTP data connection. Caolan McNamara seems to be the original author of it. | |||
2009-05-19 | Remove empty line used to force CVS to update the $Id date string format | Yang Tse | |
2009-05-18 | Add empty line, to force CVS to update the $Id date string format | Yang Tse | |
2009-05-18 | Update copyright year, to force CVS to update the $Id date string format | Yang Tse | |
2009-05-18 | Simplify c-ares function capability check | Yang Tse | |
2009-05-17 | fixed case. | Gunter Knauf | |
2009-05-17 | Take in account c-ares 1.6.1 introduces ares_library_init() and ↵ | Yang Tse | |
ares_library_cleanup() | |||
2009-05-17 | - James Bursa posted a patch to the mailing list that fixed a problem with | Daniel Stenberg | |
no_proxy which made it not skip the proxy if the URL entered contained a user name. I added test case 1101 to verify. | |||
2009-05-12 | Reverted my change to use Curl_connected_proxy() here. Clearly I wasn't | Daniel Stenberg | |
thinking straight. | |||
2009-05-12 | make no proxy set return OK from Curl_connected_proxy() since it will be called | Daniel Stenberg | |
unconditionally | |||
2009-05-11 | moved variables more locally to get rid of one set of #ifdefs | Daniel Stenberg | |
2009-05-11 | Use Curl_connected_proxy() here instead of duplicating code. Spell out the | Daniel Stenberg | |
badness in the code flow even for the socks case. | |||
2009-05-11 | fix the Curl_connected_proxy function for when libcurl actually connects fine | Daniel Stenberg | |
to it in the actual connect call and not asynchronously. | |||
2009-05-11 | - Balint Szilakszi reported a memory leak when libcurl did gzip decompression | Daniel Stenberg | |
of streams that had some parts (legitimately) missing. We now provide and use a proper cleanup function for the content encoding submodule. http://curl.haxx.se/mail/lib-2009-05/0092.html | |||
2009-05-11 | - Kamil Dudka provided a fix for libcurl-NSS reported by Michael Cronenworth | Daniel Stenberg | |
at https://bugzilla.redhat.com/show_bug.cgi?id=453612#c12 If an incorrect password is given while loading a private key, libcurl ends up in an infinite loop consuming memory. The bug is critical. | |||
2009-05-11 | - I fixed the problem with doing NTLM, POST and then following a 302 redirect, | Daniel Stenberg | |
as reported by Ebenezer Ikonne (on curl-users) and Laurent Rabret (on curl-library). The transfer was mistakenly marked to get more data to send but since it didn't actually have that, it just hung there... | |||
2009-05-11 | Internal cleanup: KEEP_WRITE and KEEP_READ are now called KEEP_SEND and | Daniel Stenberg | |
KEEP_RECV to better match the general terminology: receive and send is what we do from the (remote) servers. We read and write from and to the local fs. | |||
2009-05-10 | - Andre Guibert de Bruet correctly pointed out an over-alloc with one wasted | Daniel Stenberg | |
byte in the digest code. | |||
2009-05-10 | Fix function call pointed data size argument mismatch on 64Bit systems | Yang Tse | |
2009-05-10 | Fix type cast | Yang Tse | |
2009-05-09 | ConnectPlease() fixed for the new proxy connect functionality to make sure | Daniel Stenberg | |
'connected' truly is false when the socks connect fails. Curl_done() fixed for the check-conn->bits.done-before-Curl_getoff_all_pipelines case | |||
2009-05-09 | Fix libssh2 preprocessor symbol definition check | Yang Tse | |
2009-05-09 | Ignore more files for cvs | Yang Tse | |
2009-05-08 | Fix CR | Yang Tse | |
2009-05-08 | Renamed vc6 workspace and project files to avoid filename clash when used ↵ | Yang Tse | |
for conversion to later VS versions. | |||
2009-05-08 | Renamed vc6 workspace and project files to avoid filename clash when used ↵ | Yang Tse | |
for conversion to later VS versions. | |||
2009-05-08 | - Constantine Sapuntzakis fixed bug report #2784055 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2784055) identifying a problem to connect to SOCKS proxies when using the multi interface. It turned out to almost not work at all previously. We need to wait for the TCP connect to be properly verified before doing the SOCKS magic. There's still a flaw in the FTP code for this. | |||
2009-05-07 | Curl_sndbufset is (at times) defined in the header, no need to do it again here | Daniel Stenberg | |
2009-05-07 | - Made the SO_SNDBUF setting for the data connection socket for ftp uploads as | Daniel Stenberg | |
well. See change 28 Apr 2009. | |||
2009-05-07 | Fix an issue, affecting FTP transfers, introduced with the transfer.c patch ↵ | Yang Tse | |
committed May 4. Additionally some identation fixes. | |||
2009-05-07 | - Vijay G filed bug report #2723236 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2723236) identifying a problem with libcurl's TFTP code and its lack of dealing with the OACK packet. | |||
2009-05-05 | fix compiler warning | Yang Tse | |
2009-05-05 | I simplified the SSL session id re-use code now to *always* ditch the previous | Daniel Stenberg | |
one and store the current one, as it makes the code less complex and I'm not even sure I can check for the same session id using memcmp() like that. | |||
2009-05-04 | - Inspired by Michael Smith's session id fix for OpenSSL, I did the | Daniel Stenberg | |
corresponding fix in the GnuTLS code: make sure to store the new session id in case the re-used one is rejected. | |||
2009-05-04 | - Michael Smith posted bug report #2786255 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2786255) with a patch, identifying how libcurl did not deal with SSL session ids properly if the server rejected a re-use of one. Starting now, it will forget the rejected one and remember the new. This change was for OpenSSL only, it is likely that other SSL lib code needs similar fixes. | |||
2009-05-04 | David McCreedy's "transfer.c fixes for CURL_DO_LINEEND_CONV and non-ASCII ↵ | Yang Tse | |
platform HTTP requests" patch | |||
2009-05-02 | Use build-time configured curl_socklen_t instead of socklen_t | Yang Tse | |
2009-05-01 | David McCreedy's "http.c fix to Curl_proxyCONNECT for non-ASCII platforms" patch | Yang Tse | |
2009-05-01 | David McCreedy's "TPF-platform specific changes to various files" patch | Yang Tse | |
2009-04-30 | fix compiler warning: unused parameter | Yang Tse | |
2009-04-30 | Use 'unsigned int' instead of size_t attempting to avoid header inclusion | Yang Tse | |
2009-04-30 | NetWare LibC's getpeername() third argument data type is size_t | Yang Tse | |
2009-04-29 | curl_socklen_t NetWare follow-up | Yang Tse | |
2009-04-29 | - Based on bug report #2723219 (http://curl.haxx.se/bug/view.cgi?id=2723219) | Daniel Stenberg | |
I've now made TFTP "connections" not being kept for re-use within libcurl. TFTP is UDP-based so the benefit was really low (if even existing) to begin with so instead of tracking down to fix this problem we instead removed the re-use. I also enabled test case 1099 that I wrote a few days ago to verify that this change fixes the reported problem. | |||
2009-04-28 | - Constantine Sapuntzakis filed bug report #2783090 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2783090) pointing out that on windows we need to grow the SO_SNDBUF buffer somewhat to get really good upload speeds. http://support.microsoft.com/kb/823764 has the details. Friends confirmed that simply adding 32 to CURL_MAX_WRITE_SIZE is enough. | |||
2009-04-28 | allow usage of in-tree c-ares when building from outside of the cvs tree | Yang Tse | |
2009-04-28 | - Bug report #2709004 (http://curl.haxx.se/bug/view.cgi?id=2709004) by Tim | Daniel Stenberg | |
Chen pointed out how curl couldn't upload with resume when reading from a pipe. This ended up with the introduction of a new return code for the CURLOPT_SEEKFUNCTION callback that basically says that the seek failed but that libcurl may try to resolve the situation anyway. In our case this means libcurl will attempt to instead read that much data from the stream instead of seeking and that way curl can now upload with resume when data is read from a stream! |