Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-24 | restore executable bits on some files | Daniel Stenberg | |
2010-03-24 | remove the CVSish $Id$ lines | Daniel Stenberg | |
2010-03-24 | The 'ares' subtree has been removed from the source repository | Daniel Stenberg | |
2010-03-24 | s/CVS/git | Daniel Stenberg | |
2010-03-24 | update to current state | Daniel Stenberg | |
2010-03-24 | remove the ares subtree | Daniel Stenberg | |
c-ares is now hosted entirely separate from the curl project see http://c-ares.haxx.se/ for all details concerning c-ares, its source repository and more. | |||
2010-03-23 | mark connection as connected | Daniel Stenberg | |
Kenny To filed the bug report #2963679 with patch to fix a problem he experienced with doing multi interface HTTP POST over a proxy using PROXYTUNNEL. He found a case where it would connect fine but bits.tcpconnect was not set correct so libcurl didn't work properly. (http://curl.haxx.se/bug/view.cgi?id=2963679) | |||
2010-03-23 | enabled valgrind | Daniel Stenberg | |
I ran it now successfully and it helped to pinpoint a libssh2 memory leak! | |||
2010-03-23 | Updated Symbian notes | Dan Fandrich | |
2010-03-23 | chunked-encoding with Content-Length: header problem | Daniel Stenberg | |
Akos Pasztory filed debian bug report #572276 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572276 mentioning a problem with a resource that returns chunked-encoded _and_ with a Content-Length and libcurl failed to properly ignore the latter information. | |||
2010-03-23 | delayed easy handle kill caused double Curl_close() call | Daniel Stenberg | |
Hauke Duden provided an example program that made the multi interface crash. His example simply used the multi interface and did first one FTP transfer and after completion it used a second easy handle and did another FTP transfer on the same FTP server. This triggered a bug in the "delayed easy handle kill" system that curl uses: when an FTP connection is left alive it must keep an easy handle around internally - only for the purpose of having an easy handle when it later disconnects it. The code assumed that when the easy handle was removed and an internal reference was made, that version could be killed later on when a new easy handle came using the same connection. This was wrong as Hauke's example showed that the removed handle wasn't killed for real until later. This caused a double close attempt => segfault. | |||
2010-03-23 | ignore more files generated when tests run in the source tree | Daniel Stenberg | |
2010-03-22 | Thomas Lopatic fixed the alarm()-based DNS timeout | Daniel Stenberg | |
2010-03-22 | fix the alarm()-based DNS timeout | Thomas Lopatic | |
Looking at the code of Curl_resolv_timeout() in hostip.c, I think that in case of a timeout, the signal handler for SIGALRM never gets removed. I think that in my case it gets executed at some point later on when execution has long left Curl_resolv_timeout() or even the cURL library. The code that is jumped to with siglongjmp() simply sets the error message to "name lookup timed out" and then returns with CURLRESOLV_ERROR. I guess that instead of simply returning without cleaning up, the code should have a goto that jumps to the spot right after the call to Curl_resolv(). | |||
2010-03-22 | Fix warnings for clang | Daniel Johnson | |
2010-03-22 | Merge branch 'master' of github.com:bagder/curl | Daniel Stenberg | |
2010-03-22 | Fix insufficient initialization in Curl_clone_ssl_config() | douglas steinwand | |
which could have caused a double free when reusing curl handle. | |||
2010-03-22 | we never used this file anyway | Daniel Stenberg | |
2010-03-22 | s/CVS/git | Daniel Stenberg | |
2010-03-22 | various changes of CVS to git | Daniel Stenberg | |
2010-03-22 | remove references to CVS in the code and use DEV instead | Daniel Stenberg | |
2010-03-21 | Ben Greear's two fixes explained | Daniel Stenberg | |
2010-03-21 | Fix tftp return codes and tsize upload handling | Ben Greear | |
Error codes were not properly returned to the main curl code (and on to apps using libcurl). tftp was crapping out when tsize == 0 on upload, but I see no reason to fail to upload just because the remote file is zero-length. Ignore tsize option on upload. | |||
2010-03-21 | more files to ignore | Daniel Stenberg | |
2010-03-20 | provide an initial set of .gitignore files | Daniel Stenberg | |
2010-03-19 | - Improved Curl_read() to not ignore the error returned from Curl_ssl_recv(). | Kamil Dudka | |
2010-03-18 | fix warning about conversions between curl_off_t and long | Daniel Stenberg | |
2010-03-18 | another shot at the ftp_init() icc 9.1 optimizer issue | Yang Tse | |
2010-03-17 | replaced intel compiler option -no-ansi-alias with -fno-strict-aliasing | Yang Tse | |
2010-03-17 | update outdated serial number | Yang Tse | |
2010-03-16 | Factored out some code into a few independent functions | Dan Fandrich | |
2010-03-15 | - Constantine Sapuntzakis brought a patch: | Daniel Stenberg | |
The problem mentioned on Dec 10 2009 (http://curl.haxx.se/bug/view.cgi?id=2905220) was only partially fixed. Partially because an easy handle can be associated with many connections in the cache (e.g. if there is a redirect during the lifetime of the easy handle). The previous patch only cleaned up the first one. The new fix now removes the easy handle from all connections, not just the first one. | |||
2010-03-11 | fix compiler warning | Yang Tse | |
2010-03-11 | SSL should now be working out-of-the-box on Symbian S60. | Dan Fandrich | |
2010-03-11 | Enable Symbian zlib support by default. | Dan Fandrich | |
2010-03-11 | Allow compilation even when OpenSSL has been configured without MD4 support. | Dan Fandrich | |
2010-03-10 | A few Symbian build changes | Dan Fandrich | |
2010-03-09 | watt32 compilation fix | Yang Tse | |
2010-03-06 | - Ben Greear brought a patch that fixed the rate limiting logic for TFTP when | Daniel Stenberg | |
the easy interface was used. | |||
2010-03-06 | indent fix by Ben Greear, I removed some braces for single-line conditional | Daniel Stenberg | |
expressions | |||
2010-03-06 | Added another VS10 version string | Yang Tse | |
2010-03-06 | fix line break | Yang Tse | |
2010-03-06 | removed usage of 's6_addr', fixing compilation issue triggered with no | Yang Tse | |
longer using 'in6_addr' but only our 'ares_in6_addr' struct | |||
2010-03-05 | Daniel Johnson provided fixes for building with the clang compiler | Daniel Stenberg | |
2010-03-05 | Added IPv6 name servers support | Yang Tse | |
2010-03-05 | Ops!. Readded ares_nowarn.h. | Gisle Vanem | |
2010-03-05 | Added ares_nowarn.c. | Gisle Vanem | |
2010-03-05 | Constantine Sapuntzakis detected and fixed a double free in builds done | Yang Tse | |
with threaded resolver enabled (Windows default configuration) that would get triggered when a curl handle is closed while doing DNS resolution. | |||
2010-03-05 | Added SIZEOF_INT and SIZEOF_SHORT definitions for VMS configuration file | Yang Tse | |
2010-03-04 | Julien Chaffraix clarified CURLOPT_HEADERFUNCTION and made | Daniel Stenberg | |
CURLOPT_HEADERFUNCTION and CURLOPT_WRITEFUNCTION more consistent |