Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |||
2010-03-02 | - [Daniel Johnson] I've been trying to build libcurl with clang on Darwin and | Daniel Stenberg | |
ran into some issues with the GSSAPI tests in configure.ac. The tests first try to determine the include dirs and libs and set CPPFLAGS and LIBS accordingly. It then checks for the headers and finally sets LIBS a second time, causing the libs to be included twice. The first setting of LIBS seems redundant and should be left out, since the first part is otherwise just about finding headers. My second issue is that 'krb5-config --libs gssapi' on Darwin is less than useless and returns junk that, while it happens to work with gcc, causes clang to choke. For example, --libs returns $CFLAGS along with the libs, which is really retarded. Simply setting 'LIBS="$LIBS -lgssapi_krb5 -lresolv"' on Darwin is sufficient. | |||
2010-03-02 | - Based on patch provided by Jacob Moshenko, the transfer logic now properly | Daniel Stenberg | |
makes sure that when using sub-second timeouts, there's no final bad 1000ms wait. Previously, a sub-second timeout would often make the elapsed time end up the time rounded up to the nearest second (e.g. 1s for 200ms timeout) | |||
2010-03-02 | update the generic copyright year range to include 2010 | Daniel Stenberg | |
2010-03-02 | - Andrei Benea filed bug report #2956698 and pointed out that the | Daniel Stenberg | |
CURLOPT_CERTINFO feature leaked memory due to a missing OpenSSL function call. He provided the patch to fix it too. http://curl.haxx.se/bug/view.cgi?id=2956698 | |||
2010-03-02 | - Markus Duft pointed out in bug #2961796 that even though Interix has a | Daniel Stenberg | |
poll() function it doesn't quite work the way we want it so we must disable it, and he also provided a patch for it. http://curl.haxx.se/bug/view.cgi?id=2961796 | |||
2010-03-02 | - Made the pingpong timeout code properly deal with the response timeout AND | Daniel Stenberg | |
the global timeout if set. Also, as was reported in the bug report #2956437 by Ryan Chan, the time stamp to use as basis for the per command timeout was not set properly in the DONE phase for FTP (and not for SMTP) so I fixed that just now. This was a regression compared to 7.19.7 due to the conversion of FTP code over to the generic pingpong concepts. http://curl.haxx.se/bug/view.cgi?id=2956437 | |||
2010-03-02 | remove assignment never used | Daniel Stenberg | |
2010-03-01 | - Ben Greear provided an update for TFTP that fixes upload. | Daniel Stenberg | |
2010-03-01 | SSL, not SSH, SSL | Daniel Stenberg | |
2010-03-01 | - Wesley Miaw reported bug #2958179 which identified a case of looping during | Daniel Stenberg | |
OpenSSL based SSL handshaking even though the multi interface was used and there was no good reason for it. http://curl.haxx.se/bug/view.cgi?id=2958179 | |||
2010-02-28 | Added SIZEOF_INT and SIZEOF_SHORT definitions for non-configure systems | Yang Tse | |
2010-02-28 | Added ares_nowarn.* to VC6 project file | Yang Tse | |
2010-02-26 | spellchecked by Stéphane Fillod | Daniel Stenberg | |
2010-02-26 | - Pat Ray in bug #2958474 pointed out an off-by-one case when receiving a | Daniel Stenberg | |
chunked-encoding trailer. http://curl.haxx.se/bug/view.cgi?id=2958474 | |||
2010-02-26 | Fixed a couple of out of memory leaks and a segfault in the IMAP code. | Dan Fandrich | |
2010-02-26 | fix sizeof short | Yang Tse | |
2010-02-26 | Added SIZEOF_INT and SIZEOF_SHORT definitions for non-configure systems | Yang Tse | |