summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* various changes of CVS to gitDaniel Stenberg2010-03-228-33/+34
|
* remove references to CVS in the code and use DEV insteadDaniel Stenberg2010-03-221-3/+3
|
* Ben Greear's two fixes explainedDaniel Stenberg2010-03-212-0/+6
|
* Fix tftp return codes and tsize upload handlingBen Greear2010-03-211-7/+15
| | | | | | | | | 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.
* more files to ignoreDaniel Stenberg2010-03-212-1/+4
|
* provide an initial set of .gitignore filesDaniel Stenberg2010-03-2010-0/+72
|
* - Improved Curl_read() to not ignore the error returned from Curl_ssl_recv().Kamil Dudka2010-03-193-7/+12
|
* fix warning about conversions between curl_off_t and longDaniel Stenberg2010-03-181-4/+7
|
* another shot at the ftp_init() icc 9.1 optimizer issueYang Tse2010-03-181-4/+8
|
* replaced intel compiler option -no-ansi-alias with -fno-strict-aliasingYang Tse2010-03-172-6/+6
|
* update outdated serial numberYang Tse2010-03-174-4/+4
|
* Factored out some code into a few independent functionsDan Fandrich2010-03-161-75/+105
|
* - Constantine Sapuntzakis brought a patch:Daniel Stenberg2010-03-153-68/+83
| | | | | | | | | 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.
* fix compiler warningYang Tse2010-03-114-12/+10
|
* SSL should now be working out-of-the-box on Symbian S60.Dan Fandrich2010-03-111-5/+3
|
* Enable Symbian zlib support by default.Dan Fandrich2010-03-111-1/+1
|
* Allow compilation even when OpenSSL has been configured without MD4 support.Dan Fandrich2010-03-111-5/+16
|
* A few Symbian build changesDan Fandrich2010-03-103-13/+13
|
* watt32 compilation fixYang Tse2010-03-091-1/+1
|
* - Ben Greear brought a patch that fixed the rate limiting logic for TFTP whenDaniel Stenberg2010-03-063-17/+114
| | | | the easy interface was used.
* indent fix by Ben Greear, I removed some braces for single-line conditionalDaniel Stenberg2010-03-061-6/+5
| | | | expressions
* Added another VS10 version stringYang Tse2010-03-061-1/+3
|
* fix line breakYang Tse2010-03-062-0/+2
|
* removed usage of 's6_addr', fixing compilation issue triggered with noYang Tse2010-03-063-6/+4
| | | | longer using 'in6_addr' but only our 'ares_in6_addr' struct
* Daniel Johnson provided fixes for building with the clang compilerDaniel Stenberg2010-03-056-3/+159
|
* Added IPv6 name servers supportYang Tse2010-03-0527-196/+781
|
* Ops!. Readded ares_nowarn.h.Gisle Vanem2010-03-051-0/+1
|
* Added ares_nowarn.c.Gisle Vanem2010-03-051-1/+0
|
* Constantine Sapuntzakis detected and fixed a double free in builds doneYang Tse2010-03-053-4/+9
| | | | | with threaded resolver enabled (Windows default configuration) that would get triggered when a curl handle is closed while doing DNS resolution.
* Added SIZEOF_INT and SIZEOF_SHORT definitions for VMS configuration fileYang Tse2010-03-051-2/+8
|
* Julien Chaffraix clarified CURLOPT_HEADERFUNCTION and madeDaniel Stenberg2010-03-041-4/+4
| | | | CURLOPT_HEADERFUNCTION and CURLOPT_WRITEFUNCTION more consistent
* - [Daniel Johnson] I've been trying to build libcurl with clang on Darwin andDaniel Stenberg2010-03-023-15/+34
| | | | | | | | | | | | | | | 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.
* - Based on patch provided by Jacob Moshenko, the transfer logic now properlyDaniel Stenberg2010-03-023-5/+20
| | | | | | 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)
* update the generic copyright year range to include 2010Daniel Stenberg2010-03-021-1/+1
|
* - Andrei Benea filed bug report #2956698 and pointed out that theDaniel Stenberg2010-03-023-1/+9
| | | | | | | 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
* - Markus Duft pointed out in bug #2961796 that even though Interix has aDaniel Stenberg2010-03-023-4/+14
| | | | | | | 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
* - Made the pingpong timeout code properly deal with the response timeout ANDDaniel Stenberg2010-03-025-16/+38
| | | | | | | | | | 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
* remove assignment never usedDaniel Stenberg2010-03-021-2/+2
|
* - Ben Greear provided an update for TFTP that fixes upload.Daniel Stenberg2010-03-013-34/+43
|
* SSL, not SSH, SSLDaniel Stenberg2010-03-011-1/+1
|
* - Wesley Miaw reported bug #2958179 which identified a case of looping duringDaniel Stenberg2010-03-013-2/+10
| | | | | | | 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
* Added SIZEOF_INT and SIZEOF_SHORT definitions for non-configure systemsYang Tse2010-02-282-0/+12
|
* Added ares_nowarn.* to VC6 project fileYang Tse2010-02-281-0/+8
|
* spellchecked by Stéphane FillodDaniel Stenberg2010-02-261-1/+1
|
* - Pat Ray in bug #2958474 pointed out an off-by-one case when receiving aDaniel Stenberg2010-02-263-4/+15
| | | | | | chunked-encoding trailer. http://curl.haxx.se/bug/view.cgi?id=2958474
* Fixed a couple of out of memory leaks and a segfault in the IMAP code.Dan Fandrich2010-02-262-3/+6
|
* fix sizeof shortYang Tse2010-02-261-1/+1
|
* Added SIZEOF_INT and SIZEOF_SHORT definitions for non-configure systemsYang Tse2010-02-2617-12/+91
|
* Added SIZEOF_INT definitionYang Tse2010-02-261-0/+1
|
* fix compiler warningYang Tse2010-02-268-6/+164
|