summaryrefslogtreecommitdiff
path: root/CHANGES
Commit message (Collapse)AuthorAgeFilesLines
* Fixed --use-ascii to properly convert text files on Symbian OS, MS-DOSDan Fandrich2008-07-301-0/+4
| | | | and OS/2.
* Added test case 1050 to test --ftp-port with an IPv6 address.Dan Fandrich2008-07-291-0/+2
| | | | Made --interface tests less restrictive on host address.
* Added test cases 1045 through 1049 as simple tests of --interface using theDan Fandrich2008-07-281-0/+7
| | | | localhost interface.
* Added feature in runtests.pl to select tests based on key word.Dan Fandrich2008-07-271-0/+5
|
* - David Bau filed bug report #2026240 "CURL_READFUNC_PAUSE leads to bufferDaniel Stenberg2008-07-261-0/+12
| | | | | | | | | | | | overrun" (http://curl.haxx.se/bug/view.cgi?id=2026240) identifying two problems, and providing the fix for them: - CURL_READFUNC_PAUSE did in fact not pause the _sending_ of data that it is designed for but paused _receiving_ of data! - libcurl didn't internally set the read counter to zero when this return code was detected, which would potentially lead to junk getting sent to the server.
* Added test 1044 to test large file support in ftp with -I.Dan Fandrich2008-07-261-0/+3
|
* Changed the long logfile elision code in runtests.pl to properly handleDan Fandrich2008-07-241-0/+8
| | | | lines ending in \r.
* - I went over the curl_easy_setopt man page and replaced most references toDaniel Stenberg2008-07-231-0/+9
| | | | | | non-zero with the fixed value of 1. We should strive at making options support '1' for enabling them mentioned explicitly, as that then will allow us for to extend them in the future without breaking older programs.
* Use the sreadfrom() wrapper to replace recvfrom() in our code.Yang Tse2008-07-211-0/+3
|
* when recvfrom prototype uses a void pointer for arguments 2, 5 or 6 this willYang Tse2008-07-211-0/+5
| | | | | now cause the definition of RECVFROM_TYPE_ARG2_IS_VOID, RECVFROM_TYPE_ARG5_IS_VOID or RECVFROM_TYPE_ARG6_IS_VOID, as appropriate.
* RECVFROM_TYPE_ARG2, RECVFROM_TYPE_ARG5 and RECVFROM_TYPE_ARG6 are now definedYang Tse2008-07-171-0/+4
| | | | to the data type pointed by its respective argument and not the pointer type.
* Configure process now checks availability of recvfrom() socket function andYang Tse2008-07-161-0/+6
| | | | | | finds out its return type and the types of its arguments. Added definitions for non-configure systems config files, and introduced macro sreadfrom which will be used on udp sockets as a recvfrom() wrapper.
* add comment for include pathsYang Tse2008-07-151-5/+8
|
* Added test1042 and test1043 to test -C - on HTTP.Dan Fandrich2008-07-151-2/+2
|
* Added test1040 and test1041 to test -C - on HTTP. Test 1041 failed so it'sDan Fandrich2008-07-151-0/+4
| | | | added to DISABLED.
* Move _REENTRANT definition earlier in lib/setup.hYang Tse2008-07-141-0/+2
|
* Removed inclusion of remaining system header files from configuration files.Yang Tse2008-07-141-0/+2
| | | | These are included from lib/setup.h or specific source code file.
* HTTP_ONLY definition check in lib/setup.h is now done once that configurationYang Tse2008-07-141-0/+5
| | | | | file has been included. In this way if symbol is defined in the config file it will no longer be ignored.
* Added missing multiple header inclusion prevention definitionYang Tse2008-07-111-0/+4
|
* Fixed test 553 to pass the torture test.Dan Fandrich2008-07-111-0/+3
|
* - Daniel Fandrich found out we didn't pass on the user-agent properly whenDaniel Stenberg2008-07-111-0/+5
| | | | | doing "proxy-tunnels" with non-HTTP prototols and that was simply because the code assumed the user-agent was only needed for HTTP.
* Added test cases 1038 and 1039 to test Adrian Kreher's report that ftpDan Fandrich2008-07-111-0/+3
| | | | uploads with -C - didn't resume properly, but the tests pass.
* Changed slightly the SFTP quote commands chmod, chown and chgrp to onlyDan Fandrich2008-07-111-0/+7
| | | | | | | set the attribute that has changed instead of all possible ones. Hopefully, this will solve the "Permission denied" problem that Nagarajan Sreenivasan reported when setting some modes, but regardless, it saves a protocol round trip in the chmod case.
* Peter Lamberg filed bug report #2015126: "poll gives WSAEINVAL when POLLPRIYang Tse2008-07-101-0/+7
| | | | | | | is set in fdset.events" (http://curl.haxx.se/bug/view.cgi?id=2015126) which exactly pinpointed the problem only triggered on Windows Vista, provided reference to docs and also a fix. There is much work behind Peter Lamberg's excellent bug report. Thank You!
* Added tests 1036 and 1037 to verify resumed ftp downloads with -C -Dan Fandrich2008-07-101-0/+3
|
* - Andreas Schuldei improved Phil Blundell's patch for IPv6 using c-ares, and IDaniel Stenberg2008-07-091-0/+5
| | | | | edited it slightly. Now you should be able to use IPv6 addresses fine even with libcurl built to use c-ares.
* Fixed an OOM handling problem that cause test 11 to fail the torture test.Dan Fandrich2008-07-091-0/+3
|
* Fixed test 554 to pass the torture test.Dan Fandrich2008-07-081-0/+3
|
* Added test cases 1034 & 1035 to test IDN name conversion failures.Dan Fandrich2008-07-071-0/+3
|
* - Scott Barrett provided a test case for a segfault in the FTP code and theDaniel Stenberg2008-07-071-0/+8
| | | | | | | | fix for it. It occured when you did a FTP transfer using CURLFTPMETHOD_SINGLECWD and then did another one on the same easy handle but switched to CURLFTPMETHOD_NOCWD. Due to the "dir depth" variable not being cleared properly. Scott's test case is now known as test 539 and it verifies the fix.
* mention that egrep and ar are also mandatoryYang Tse2008-07-051-1/+2
|
* Phil Blundell provided a fix for libcurl's treatment of unexpected 1xxDaniel Stenberg2008-07-031-0/+4
| | | | | response codes. Previously libcurl would hang on such occurances. I added test case 1033 to verify.
* Introcuding a new timestamp for curl_easy_getinfo():Daniel Stenberg2008-07-031-0/+8
| | | | | | | | CURLINFO_APPCONNECT_TIME. This is set with the "application layer" handshake/connection is completed (typically SSL, TLS or SSH). By using this you can figure out the application layer's own connect time. You can extract the time stamp using curl's -w option and the new variable named 'time_appconnect'. This feature was sponsored by Lenny Rachitsky at NeuStar.
* Support Open Watcom C on Linux (as well as Windows).Dan Fandrich2008-07-021-0/+3
|
* The configure process will now halt when sed or grep are unavailableYang Tse2008-07-021-0/+2
|
* fallback to gettimeofday when monotonic clock is unavailable at run-timeYang Tse2008-07-021-0/+7
|
* - Rolland Dudemaine provided fixes to get libcurl to build for the INTEGRITYDaniel Stenberg2008-07-011-0/+4
| | | | operating system.
* - Stephen Collyer and Tor Arntsen helped identify a flaw in the range codeDaniel Stenberg2008-06-301-0/+7
| | | | | which output the range using a signed variable where it should rather use unsigned.
* John Lightsey filed bug report #1999181: "CLOCK_MONOTONIC always fails onYang Tse2008-06-291-0/+8
| | | | | | | | some systems" (http://curl.haxx.se/bug/view.cgi?id=1999181). The problem was that the configure script did not use the _POSIX_MONOTONIC_CLOCK feature test macro when checking monotonic clock availability. This is now fixed and the monotonic clock will not be used unless the feature test macro is defined with a value greater than zero indicating always supported.
* Honour --stderr with the -v option.Dan Fandrich2008-06-261-0/+6
| | | | | Fixed a file handle leak in the command line client if more than one --stderr option was given.
* - Eduard Bloch filed the debian bug report #487567Daniel Stenberg2008-06-221-0/+7
| | | | | | | (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=487567) pointing out that libcurl used Content-Range: instead of Range when doing a range request with --head (CURLOPT_NOBODY). This is now fixed and test case 1032 was added to verify.
* Stopped using ranges in scanf character sequences (e.g. %[a-z]) since thatDan Fandrich2008-06-221-0/+5
| | | | | is not ANSI C, just a common extension. This caused problems on at least Open Watcom C.
* Modified configuration script to actually verify if the compiler is goodYang Tse2008-06-201-0/+6
| | | | | | enough at detecting compilation errors or at least it has been properly configured to do so. Configuration heavily depends on this capability, so if this compiler sanity check fails the configuration process will now fail.
* - Phil Pellouchoud found a case where libcurl built with NSS failed toDaniel Stenberg2008-06-201-0/+6
| | | | | | | handshake with a SSLv2 server, and it turned out to be because it didn't recognize the cipher named "rc4-md5". In our list that cipher was named plainly "rc4". I've now added rc4-md5 to work as an alias as Phil reported that it made things work for him again.
* - Hans-Jurgen May pointed out that trying SCP or SFTP over a SOCKS proxyDaniel Stenberg2008-06-201-0/+8
| | | | | | | | crashed libcurl. This is now addressed by making sure we use "plain send" internally when doing the socks handshake instead of the Curl_write() function which is designed to use the "target" protocol. That's then SCP or SFTP in this case. I also took the opportunity and cleaned up some ssh- related #ifdefs in the code for readability.
* minor language fixDaniel Stenberg2008-06-191-3/+3
|
* - Christopher Palow fixed a curl_multi_socket() issue which previous causedDaniel Stenberg2008-06-191-0/+7
| | | | | | | | libcurl to not tell the app properly when a socket was closed (when the name resolve done by c-ares is done) and then immediately re-created and put to use again (for the actual connection). Since the closure will make the "watch status" get lost in several event-based systems libcurl will need to tell the app about this close/re-create case.
* - Dengminwen found a bug in the connection re-use function when using theDaniel Stenberg2008-06-191-0/+6
| | | | | | multi interface with pipelining enabled as it would wrongly check for, detect and close "dead connections" even though that connection was already in use!
* Fixed a memory leak in the command-line tool that caused a valgrind error.Dan Fandrich2008-06-191-0/+2
|
* Added SSH failure test cases 628-632Dan Fandrich2008-06-191-0/+3
|