CHANGES
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:93k
源码类别:

TAPI编程

开发平台:

Visual C++

  1.                                   _   _ ____  _
  2.                               ___| | | |  _ | |
  3.                              / __| | | | |_) | |
  4.                             | (__| |_| |  _ <| |___
  5.                              ___|___/|_| ______|
  6.                                   Changelog
  7. Version 7.19.3 (19 January 2009)
  8. Daniel Stenberg (16 Jan 2009)
  9. - Andrew de los Reyes fixed curlbuild.h for "generic" gcc builds on PPC, both
  10.   32 bit and 64 bit.
  11. Daniel Stenberg (15 Jan 2009)
  12. - Tim Ansell fixed a compiler warning in lib/cookie.c
  13. Daniel Stenberg (14 Jan 2009)
  14. - Grant Erickson fixed timeouts for TFTP such that specifying a
  15.   connect-timeout, a max-time or both options work correctly and as expected
  16.   by passing the correct boolean value to Curl_timeleft via the
  17.   'duringconnect' parameter.
  18.   With this small change, curl TFTP now behaves as expected (and likely as
  19.   originally-designed):
  20.   1) For non-existent or unreachable dotted IP addresses:
  21.    a) With no options, follows the default curl 300s timeout...
  22.    b) With --connect-timeout only, follows that value...
  23.    c) With --max-time only, follows that value...
  24.    d) With both --connect-timeout and --max-time, follows the smaller value...
  25.    and times out with a "curl: (7) Couldn't connect to server" error.
  26.   2) For transfers to/from a valid host:
  27.    a) With no options, follows default curl 300s timeout for the
  28.       first XRQ/DATA/ACK transaction and the default TFTP 3600s
  29.       timeout for the remainder of the transfer...
  30.    b) With --connect-time only, follows that value for the
  31.       first XRQ/DATA/ACK transaction and the default TFTP 3600s
  32.       timeout for the remainder of the transfer...
  33.    c) With --max-time only, follows that value for the first
  34.       XRQ/DATA/ACK transaction and for the remainder of the
  35.       transfer...
  36.    d) With both --connect-timeout and --max-time, follows the former
  37.       for the first XRQ/DATA/ACK transaction and the latter for the
  38.       remainder of the transfer...
  39.    and times out with a "curl: (28) Timeout was reached" error as
  40.    appropriate.
  41. Daniel Stenberg (13 Jan 2009)
  42. - Michael Wallner fixed a NULL pointer deref when calling
  43.   curl_easy_setup(curl, CURLOPT_COOKIELIST, "SESS") on a CURL handle with no
  44.   cookies data.
  45. - Stefan Teleman brought a patch to fix the default curlbuild.h file for the
  46.   SunPro compilers.
  47. Daniel Stenberg (12 Jan 2009)
  48. - Based on bug report #2498665 (http://curl.haxx.se/bug/view.cgi?id=2498665)
  49.   by Daniel Black, I've now added magic to the configure script that makes it
  50.   use pkg-config to detect gnutls details as well if the existing method
  51.   (using libgnutls-config) fails. While doing this, I cleaned up and unified
  52.   the pkg-config usage when detecting openssl and nss as well.
  53. Daniel Stenberg (11 Jan 2009)
  54. - Karl Moerder brought the patch that creates vc9 Makefiles, and I made
  55.   'maketgz' now use the actual makefile targets to do the VC8 and VC9
  56.   makefiles.
  57. Daniel Stenberg (10 Jan 2009)
  58. - Emil Romanus fixed:
  59.   When using the multi interface over HTTP and the server returns a Location
  60.   header, the running easy handle will get stuck in the CURLM_STATE_PERFORM
  61.   state, leaving the external event loop stuck waiting for data from the
  62.   ingoing socket (when using the curl_multi_socket_action stuff). While this
  63.   bug was pretty hard to find, it seems to require only a one-line fix. The
  64.   break statement on line 1374 in multi.c caused the function to skip the call
  65.   to multistate().
  66.   How to reproduce this bug? Well, that's another question.  evhiperfifo.c in
  67.   the examples directory chokes on this bug only _sometimes_, probably
  68.   depending on how fast the URLs are added. One way of testing the bug out is
  69.   writing to hiper.fifo from more than one source at the same time.
  70. Daniel Fandrich (7 Jan 2009)
  71. - Unified much of the SessionHandle initialization done in Curl_open() and
  72.   curl_easy_reset() by creating Curl_init_userdefined(). This had the side
  73.   effect of fixing curl_easy_reset() so it now also resets
  74.   CURLOPT_FTP_FILEMETHOD and CURLOPT_SSL_SESSIONID_CACHE
  75. Daniel Stenberg (7 Jan 2009)
  76. - Rob Crittenden did once again provide an NSS update:
  77.   I have to jump through a few hoops now with the NSS library initialization
  78.   since another part of an application may have already initialized NSS by the
  79.   time Curl gets invoked. This patch is more careful to only shutdown the NSS
  80.   library if Curl did the initialization.
  81.   It also adds in a bit of code to set the default ciphers if the app that
  82.   call NSS_Init* did not call NSS_SetDomesticPolicy() or set specific
  83.   ciphers. One might argue that this lets other application developers get
  84.   lazy and/or they aren't using the NSS API correctly, and you'd be right.
  85.   But still, this will avoid terribly difficult-to-trace crashes and is
  86.   generally helpful.
  87. Daniel Stenberg (1 Jan 2009)
  88. - 'reconf' is removed since we rather have users use 'buildconf'
  89. Daniel Stenberg (31 Dec 2008)
  90. - Bas Mevissen reported http://curl.haxx.se/bug/view.cgi?id=2479030 pointing
  91.   out that 'reconf' didn't properly point out the m4 subdirectory when running
  92.   aclocal.
  93. Daniel Stenberg (29 Dec 2008)
  94.  - Phil Lisiecki filed bug report #2413067
  95.   (http://curl.haxx.se/bug/view.cgi?id=2413067) that identified a problem that
  96.   would cause libcurl to mark a DNS cache entry "in use" eternally if the
  97.   subsequence TCP connect failed. It would thus never get pruned and refreshed
  98.   as it should've been.
  99.   Phil provided his own patch to this problem that while it seemed to work
  100.   wasn't complete and thus I wrote my own fix to the problem.
  101. Daniel Stenberg (28 Dec 2008)
  102. - Peter Korsgaard fixed building libcurl with "configure --with-ssl
  103.   --disable-verbose".
  104.   
  105. - Anthony Bryan fixed more language and spelling flaws in man pages.
  106. Daniel Stenberg (22 Dec 2008)
  107. - Given a recent enough libssh2, libcurl can now seek/resume with SFTP even
  108.   on file indexes beyond 2 or 4GB.
  109. - Anthony Bryan provided a set of patches that cleaned up manual language,
  110.   corrected spellings and more.
  111. Daniel Stenberg (20 Dec 2008)
  112. - Igor Novoseltsev fixed a bad situation for the multi_socket() API when doing
  113.   pipelining, as libcurl could then easily get confused and A) work on the
  114.   handle that was not "first in queue" on a pipeline, or even B) tell the app
  115.   to REMOVE a socket while it was in use by a second handle in a pipeline. Both
  116.   errors caused hanging or stalling applications.
  117. Daniel Stenberg (19 Dec 2008)
  118. - curl_multi_timeout() could return a timeout value of 0 even though nothing
  119.   was actually ready to get done, as the internal time resolution is higher
  120.   than the returned millisecond timer. Therefore it could cause applications
  121.   running on fast processors to do short bursts of busy-loops.
  122.   curl_multi_timeout() will now only return 0 if the timeout is actually
  123.   alreay triggered.
  124. - Using the libssh2 0.19 function libssh2_session_block_directions(), libcurl
  125.   now has an improved ability to do right when the multi interface (both
  126.   "regular" and multi_socket) is used for SCP and SFTP transfers. This should
  127.   result in (much) less busy-loop situations and thus less CPU usage with no
  128.   speed loss.
  129. Daniel Stenberg (17 Dec 2008)
  130. - SCP and SFTP with the multi interface had the same flaw: the 'DONE'
  131.   operation didn't complete properly if the EAGAIN equivalent was returned but
  132.   libcurl would simply continue with a half-completed close operation
  133.   performed. This ruined persistent connection re-use and cause some
  134.   SSH-protocol errors in general. The correction is unfortunately adding a
  135.   blocking function - doing it entirely non-blocking should be considered for
  136.   a better fix.
  137. Gisle Vanem (16 Dec 2008)
  138. - Added the possibility to use the Watt-32 tcp/ip stack under Windows.
  139.   The change simply involved adding a USE_WATT32 section in the
  140.   config-win32.h files (under ./lib and ./src). This section disables
  141.   the use of any Winsock headers.
  142. Daniel Stenberg (16 Dec 2008)
  143. - libssh2_sftp_last_error() was wrongly used at some places in libcurl which
  144.   made libcurl sometimes not properly abort problematic SFTP transfers.
  145. Daniel Stenberg (12 Dec 2008)
  146. - More work with Igor Novoseltsev to first fix the remaining stuff for
  147.   removing easy handles from multi handles when the easy handle is/was within
  148.   a HTTP pipeline. His bug report #2351653
  149.   (http://curl.haxx.se/bug/view.cgi?id=2351653) was also related and was
  150.   eventually fixed by a patch by Igor himself.
  151. Yang Tse (12 Dec 2008)
  152. - Patrick Monnerat fixed a build regression, introduced in 7.19.2, affecting
  153.   OS/400 compilations with IPv6 enabled.
  154. Daniel Stenberg (12 Dec 2008)
  155. - Mark Karpeles filed bug report #2416182 titled "crash in ConnectionExists
  156.   when using duphandle+curl_mutli"
  157.   (http://curl.haxx.se/bug/view.cgi?id=2416182) which showed that
  158.   curl_easy_duphandle() wrongly also copied the pointer to the connection
  159.   cache, which was plain wrong and caused a segfault if the handle would be
  160.   used in a different multi handle than the handle it was duplicated from.
  161. Daniel Stenberg (11 Dec 2008)
  162. - Keshav Krity found out that libcurl failed to deal with dotted IPv6
  163.   addresses if they were very long (>39 letters) due to a too strict address
  164.   validity parser. It now accepts addresses up to 45 bytes long.
  165. Daniel Stenberg (11 Dec 2008)
  166. - Internet Explorer had a broken HTTP digest authentication before v7 and
  167.   there are servers "out there" that relies on the client doing this broken
  168.   Digest authentication. Apache even comes with an option to work with such
  169.   broken clients.
  170.   The difference is only for URLs that contain a query-part (a '?'-letter and
  171.   text to the right of it).
  172.   libcurl now supports this quirk, and you enable it by setting the
  173.   CURLAUTH_DIGEST_IE bit in the bitmask you pass to the CURLOPT_HTTPAUTH or
  174.   CURLOPT_PROXYAUTH options. They are thus individually controlled to server
  175.   and proxy.
  176.   (note that there's no way to activate this with the curl tool yet)
  177. Daniel Fandrich (9 Dec 2008)
  178. - Added test cases 1089 and 1090 to test --write-out after a redirect to
  179.   test a report that the size didn't work, but these test cases pass.
  180. - Documented CURLOPT_CONNECT_ONLY as being useful only on HTTP URLs.
  181. Daniel Stenberg (9 Dec 2008)
  182. - Ken Hirsch simplified how libcurl does FTPS: now it doesn't assume any
  183.   particular state for the control connection like it did before for implicit
  184.   FTPS (libcurl assumed such control connections to be encrypted while some
  185.   FTPS servers such as FileZilla assumes such connections to be clear
  186.   mode). Use the CURLOPT_USE_SSL option to set your desired level.
  187. Daniel Stenberg (8 Dec 2008)
  188. - Fred Machado posted about a weird FTP problem on the curl-users list and when
  189.   researching it, it turned out he got a 550 response back from a SIZE command
  190.   and then I fell over the text in RFC3659 that says:
  191.    The presence of the 550 error response to a SIZE command MUST NOT be taken
  192.    by the client as an indication that the file cannot be transferred in the
  193.    current MODE and TYPE.
  194.   In other words: the change I did on September 30th 2008 and that has been
  195.   included in the last two releases were a regression and a bad idea. We MUST
  196.   NOT take a 550 response from SIZE as a hint that the file doesn't exist.
  197. - Christian Krause filed bug #2221237
  198.   (http://curl.haxx.se/bug/view.cgi?id=2221237) that identified an infinite
  199.   loop during GSS authentication given some specific conditions. With his
  200.   patience and great feedback I managed to narrow down the problem and
  201.   eventually fix it although I can't test any of this myself!
  202. Daniel Fandrich (3 Dec 2008)
  203. - Fixed the getifaddrs version of Curl_if2ip to work on systems without IPv6
  204.   support (e.g. Minix)
  205. Daniel Stenberg (3 Dec 2008)
  206. - Igor Novoseltsev filed bug #2351645
  207.   (http://curl.haxx.se/bug/view.cgi?id=2351645) that identified a problem with
  208.   the multi interface that occured if you removed an easy handle while in
  209.   progress and the handle was used in a HTTP pipeline.
  210. - Pawel Kierski pointed out a mistake in the cookie code that could lead to a
  211.   bad fclose() after a fatal error had occured.
  212.   (http://curl.haxx.se/bug/view.cgi?id=2382219)
  213. Daniel Fandrich (25 Nov 2008)
  214. - If a HTTP request is Basic and num is already >=1000, the HTTP test
  215.   server adds 1 to num to get the data section to return. This allows
  216.   testing authentication negotiations using the Basic authentication
  217.   method.
  218. - Added tests 1087 and 1088 to test Basic authentication on a redirect
  219.   with and without --location-trusted
  220. Daniel Stenberg (24 Nov 2008)
  221. - Based on a patch by Vlad Grachov, libcurl now uses a new libssh2 0.19
  222.   function when built to support SCP and SFTP that helps the library to know
  223.   in which direction a particular libssh2 operation would return EAGAIN so
  224.   that libcurl knows what socket conditions to wait for before trying the
  225.   function call again. Previously (and still when using libssh2 0.18 or
  226.   earlier), libcurl will busy-loop in this situation when the easy interface
  227.   is used!
  228. Daniel Fandrich (20 Nov 2008)
  229. - Automatically detect OpenBSD's CA cert bundle.
  230. Daniel Stenberg (19 Nov 2008)
  231. - I removed the default use of "Pragma: no-cache" from libcurl when a proxy is
  232.   used. It has been used since forever but it was never a good idea to use
  233.   unless explicitly asked for.
  234. - Josef Wolf's extension that allows a $TESTDIR/gdbinit$testnum file that when
  235.   you use runtests.pl -g, will be sourced by gdb to allow additional fancy or
  236.   whatever you see fit
  237. - Christian Krause reported and fixed a memory leak that would occur with HTTP
  238.   GSS/kerberos authentication (http://curl.haxx.se/bug/view.cgi?id=2284386)
  239. - Andreas Wurf and Markus Koetter helped me analyze a problem that Andreas got
  240.   when uploading files to a single FTP server using multiple easy handle
  241.   handles with the multi interface. Occasionally a handle would stall in
  242.   mysterious ways.
  243.   The problem turned out to be a side-effect of the ConnectionExists()
  244.   function's eagerness to re-use a handle for HTTP pipelining so it would
  245.   select it even if already being in use, due to an inadequate check for its
  246.   chances of being used for pipelnining.
  247. Daniel Fandrich (17 Nov 2008)
  248. - Added more compiler warning options for gcc 4.3
  249. Yang Tse (17 Nov 2008)
  250. - Fix a remaining problem in the inet_pton() runtime configure check. And
  251.   fix internal Curl_inet_pton() failures to reject certain malformed literals.
  252. - Make configure script check if ioctl with the SIOCGIFADDR command can be
  253.   used, and define HAVE_IOCTL_SIOCGIFADDR if appropriate.
  254. Daniel Stenberg (16 Nov 2008)
  255. - Christian Krause fixed a build failure when building with gss support
  256.   enabled and FTP disabled.
  257. - Added check for NULL returns from strdup() in src/main.c and lib/formdata.c
  258.   - reported by Jim Meyering also prevent buffer overflow on MSDOS when you do
  259.   for example -O on a url with a file name part longer than PATH_MAX letters
  260. - lib/nss.c fixes based on the report by Jim Meyering: I went over and added
  261.   checks for return codes for all calls to malloc and strdup that were
  262.   missing. I also changed a few malloc(13) to use arrays on the stack and a
  263.   few malloc(PATH_MAX) to instead use aprintf() to lower memory use.
  264. - I fixed a memory leak in Curl_nss_connect() when CURLOPT_ISSUERCERT is
  265.   in use.
  266. Daniel Fandrich (14 Nov 2008)
  267. - Added .xml as one of the few common file extensions known by the multipart
  268.   form generator.
  269. - Added some #ifdefs around header files and change the EAGAIN test to
  270.   fix compilation on Cell (reported by Jeff Curley).
  271. Yang Tse (14 Nov 2008)
  272. - Fixed several configure script issues affecting checks for inet_ntoa_r(),
  273.   inet_ntop(), inet_pton(), getifaddrs(), fcntl() and getaddrinfo().
  274. Yang Tse (13 Nov 2008)
  275. - Refactored configure script detection of functions used to set sockets into
  276.   non-blocking mode, and decouple function detection from function capability.
  277. Version 7.19.2 (13 November 2008)
  278. Michal Marek (13 Nov 2008)
  279. - Fixed a potential data loss in Curl_client_write() when the transfer is
  280.   paused.
  281. Daniel Stenberg (11 Nov 2008)
  282. - Rainer Canavan filed bug #2255627
  283.   (http://curl.haxx.se/bug/view.cgi?id=2255627) which pointed out that a
  284.   program using libcurl's multi interface to download a HTTPS page with a
  285.   libcurl built powered by OpenSSL, would easily get silly and instead hand
  286.   over SSL details as data instead of the actual HTTP headers and body. This
  287.   happened because libcurl would consider the connection handshake done too
  288.   early. This problem was introduced at September 22nd 2008 with my fix of the
  289.   bug #2107377
  290.   The correct fix is now instead done within the GnuTLS-handling code, as both
  291.   the OpenSSL and the NSS code already deal with this situation in similar
  292.   fashion. I added test case 560 in an attempt to verify this fix, but
  293.   unfortunately it didn't trigger it even before this fix!
  294. Yang Tse (11 Nov 2008)
  295. - Related with bug #2230535 (http://curl.haxx.se/bug/view.cgi?id=2230535)
  296.   Daniel Fandrich noticed that curl_addrinfo was also missing in the build
  297.   process of other four non-configure platforms. Added now.
  298. Daniel Fandrich (7 Nov 2008)
  299. - The getifaddrs() version of Curl_if2ip() crashed when used on a Linux
  300.   system with a TEQL load-balancing device configured, which doesn't
  301.   have an address.  Thanks to Adam Sampson for spotting this (bug #2234923).
  302. Yang Tse (6 Nov 2008)
  303. - Merged existing IPv4 and IPv6 Curl_ip2addr functions into a single one
  304.   which now also takes a protocol address family argument.
  305. - Bug #2230535 (http://curl.haxx.se/bug/view.cgi?id=2230535) pointed out a
  306.   problem with MSVC 6 makefile that caused a build failure. It was noted that
  307.   the curl_addrinfo.obj reference was missing. I took the opportunity to sort
  308.   the list in which this was missing. Issue submitted by John Wilkinson.
  309. Version 7.19.1 (5 November 2008)
  310. Daniel Stenberg (4 Nov 2008)
  311. - CURLINFO_FILETIME now works for file:// transfers as well
  312. Daniel Stenberg (3 Nov 2008)
  313. - Bug #2218480 (http://curl.haxx.se/bug/view.cgi?id=2218480) pointed out a
  314.   problem with my CURLINFO_PRIMARY_IP fix from October 7th that caused a NULL
  315.   pointer read. I also took the opportunity to clean up this logic (storing of
  316.   the connection's IP address) somewhat as we had it stored in two different
  317.   places and ways previously and they are now unified.
  318. Yang Tse (3 Nov 2008)
  319. - Fix undersized IPv6 address internal buffer. IPv6 address strings longer
  320.   than 35 characters would be truncated.
  321. Daniel Stenberg (2 Nov 2008)
  322. - Daniel Johnson reported and fixed:
  323.   When c-ares isn't enabled, libcurl by default calls getaddrinfo with family
  324.   set to PF_UNSPEC which causes getaddrinfo to return all available addresses,
  325.   both IPv4 and IPv6. Libcurl then tries each one until it can connect. If the
  326.   net connection doesn't support IPv6, libcurl can still fall back to IPv4.
  327.   However, since c-ares doesn't support PF_UNSPEC, when it's used it defaults
  328.   to using family=PF_INET6 and therefore only returns IPv6 addresses when AAAA
  329.   records are available, even if IPv4 addresses are also available. The effect
  330.   is that since my ISP doesn't do IPv6, libcurl can't connect at all to a site
  331.   that has AAAA records. It will work if I explicitly use CURL_IPRESOLVE_V4 or
  332.   --ipv4 with the curl tool. I discovered this when curl would fail to connect
  333.   to seemingly random sites. It turns out they weren't random, they were sites
  334.   with AAAA records.
  335.   So now libcurl defaults to PF_INET... until c-ares has been tought to offer
  336.   both.
  337. Yang Tse (31 Oct 2008)
  338. - Tests 558 and 559 are stabilized. These two tests were initially introduced
  339.   to aid in the location of a seg-fault which was only triggered on non-debug
  340.   builds done with the icc 9.1 Intel compiler. Test 558 does not trigger the
  341.   problem, but test 559 does trigger it. As of today, it isn't yet absolutely
  342.   clear if it is a compiler optimizer issue or a memory corruption one.
  343. Yang Tse (30 Oct 2008)
  344. - Use our Curl_addrinfo structure definition to handle address info data even
  345.   when a system addrinfo struct is available. Provide and use a wrapper around
  346.   systems getaddrinfo function, Curl_getaddrinfo_ex which returns a pointer to
  347.   a list of dynamically allocated Curl_addrinfo structs.
  348.   Configure will check freeaddrinfo and getaddrinfo functions and define
  349.   preprocessor symbols HAVE_FREEADDRINFO and HAVE_GETADDRINFO when appropriate.
  350. Daniel Fandrich (29 Oct 2008)
  351. - Fixed a bug that caused a few bytes of garbage to be sent after a
  352.   curl_easy_pause() during a chunky upload. Reported by Steve Roskowski.
  353. Daniel Fandrich (28 Oct 2008)
  354. - Changed the "resolve" test precheck program to verify that an IPv6 socket
  355.   can be created before resolving the IPv6 name.  In the context of running
  356.   a test, it doesn't make sense to run an IPv6 test when a host is resolvable
  357.   but IPv6 isn't usable.  This should fix failures of test 1085 on hosts with
  358.   library and DNS support for IPv6 but where actual use of IPv6 has been
  359.   administratively disabled.
  360. Daniel Fandrich (24 Oct 2008)
  361. - Added experimental support for zlib and OpenSSL on Symbian OS.
  362. Daniel Fandrich (21 Oct 2008)
  363. - Fixed some problems with SFTP range support to fix test cases 634 through
  364.   637.
  365. Daniel Fandrich (17 Oct 2008)
  366. - Fixed a compile error reported by Albert Chin on AIX and IRIX when using
  367.   GTLS.
  368. Daniel Stenberg (16 Oct 2008)
  369. - Igor Novoseltsev added CURLOPT_PROXYUSER and CURLOPT_PROXYPASSWORD that then
  370.   make CURLOPT_PROXYUSERPWD sort of deprecated. The primary motive for adding
  371.   these new options is that they have no problems with the colon separator
  372.   that the CURLOPT_PROXYUSERPWD option does.
  373. Daniel Stenberg (15 Oct 2008)
  374. - Pascal Terjan filed bug #2154627
  375.   (http://curl.haxx.se/bug/view.cgi?id=2154627) which pointed out that libcurl
  376.   uses strcasecmp() in multiple places where it causes failures when the
  377.   Turkish locale is used. This is because 'i' and 'I' isn't the same letter so
  378.   strcasecmp() on those letters are different in Turkish than in English (or
  379.   just about all other languages). I thus introduced a totally new internal
  380.   function in libcurl (called Curl_raw_equal) for doing case insentive
  381.   comparisons for english-(ascii?) style strings that thus will make "file"
  382.   and "FILE" match even if the Turkish locale is selected.
  383. Daniel Fandrich (15 Oct 2008)
  384. - A <precheck> command is considered to have failed if it returns a non-zero
  385.   return code.  This way, if the precheck command can't be run at all for
  386.   whatever reason, it's treated as a precheck failure which causes the
  387.   test to be skipped.
  388. Daniel Stenberg (15 Oct 2008)
  389. - John Wilkinson filed bug #2155496
  390.   (http://curl.haxx.se/bug/view.cgi?id=2155496) pointing out an error case
  391.   without a proper human-readable error message. When a read callback returns
  392.   a too large value (like when trying to return a negative number) it would
  393.   trigger and the generic error message then makes the proplem slightly
  394.   different to track down. I've added an error message for this now.
  395. Daniel Fandrich (9 Oct 2008)
  396. - Fixed the --interface option to work with IPv6 connections on glibc
  397.   systems supporting getifaddrs(). Also fixed a problem where an IPv6
  398.   address could be chosen instead of an IPv4 one for --interface when it
  399.   involved a name lookup.
  400. Daniel Fandrich (8 Oct 2008)
  401. - Added tests 1082 through 1085 to test symbolic --interface parameters
  402. - Added tests 633 through 637 to test the new file range support for SFTP.
  403.   All but the first test cause an infinite loop or other failure and so
  404.   are added to DISABLED.
  405. Daniel Stenberg (8 Oct 2008)
  406. - John Wilkinson filed bug #2152270
  407.   (http://curl.haxx.se/bug/view.cgi?id=2152270) which identified and fixed a
  408.   CURLINFO_REDIRECT_URL memory leak and an additional wrong-doing:
  409.   Any subsequent transfer with a redirect leaks memory, eventually crashing
  410.   the process potentially.
  411.   Any subsequent transfer WITHOUT a redirect causes the most recent redirect
  412.   that DID occur on some previous transfer to still be reported.
  413. - Igor Novoseltsev filed bug #2111613
  414.   (http://curl.haxx.se/bug/view.cgi?id=2111613) that eventually identified a
  415.   flaw in how the multi_socket interface in some cases missed to call the
  416.   timeout callback when easy interfaces are removed and added within the same
  417.   millisecond.
  418. - Igor Novoseltsev brought a patch that introduced two new options to
  419.   curl_easy_setopt: CURLOPT_USERNAME and CURLOPT_PASSWORD that sort of
  420.   deprecates the good old CURLOPT_USERPWD since they allow applications to set
  421.   the user name and password independently and perhaps more importantly allow
  422.   both to contain colon(s) which CURLOPT_USERPWD doesn't fully support.
  423. Daniel Fandrich (7 Oct 2008)
  424. - Changed the handling of read/write errors in Curl_perform() to allow a
  425.   a fresh connection to be made in such cases and the request retransmitted.
  426.   This should fix test case 160.  Added test case 1079 in an attempt to
  427.   test a similar connection dropping scenario, but as a race condition, it's
  428.   hard to test reliably.
  429. - Created test cases 1080 and 1081 to reproduce a problem of
  430.   CURLINFO_REDIRECT_URL leaking memory and returning incorrect results when
  431.   two URLs are requested. Reported by vmpdemo in bug #2152270
  432. Daniel Stenberg (7 Oct 2008)
  433. - Fixed CURLINFO_PRIMARY_IP: When libcurl created a connection to host A then
  434.   the app re-used the handle to do a connection to host B and then again
  435.   re-used the handle to host A, it would not update the info with host A's IP
  436.   address (due to the connection being re-used) but it would instead report
  437.   the info from host B.
  438. Yang Tse (7 Oct 2008)
  439. - Added --enable-optimize configure option to enable and disable compiler
  440.   optimizations to allow decoupled setting from --enable-debug.
  441. Yang Tse (2 Oct 2008)
  442. - Added --enable-warnings configure option to enable and disable strict
  443.   compiler warnings to allow decoupled setting from --enable-debug.
  444.   runtests.pl will now run with picky compiler warnings enabled unless
  445.   explicitly disabled.
  446. Daniel Fandrich (1 Oct 2008)
  447. - "make clean" now cleans out the docs and tests directories, too.
  448. Daniel Stenberg (30 Sep 2008)
  449. - The libcurl FTP code now returns CURLE_REMOTE_FILE_NOT_FOUND error when SIZE
  450.   gets a 550 response back for the cases where a download (or NOBODY) is
  451.   wanted. It still allows a 550 as response if the SIZE is used as part of an
  452.   upload process (like if resuming an upload is requested and the file isn't
  453.   there before the upload). I also modified the FTP test server and a few test
  454.   cases accordingly to match this modified behavior.
  455. Daniel Stenberg (29 Sep 2008)
  456. - Daniel Egger provided a patch that allows you to disable proxy support in
  457.   libcurl to somewhat reduce the size of the binary. Run configure
  458.   --disable-proxy.
  459. Daniel Fandrich (29 Sep 2008)
  460. - Moved all signal-based name resolution timeout handling into a single new
  461.   Curl_resolv_timeout function to reduce coupling.
  462. Daniel Stenberg (29 Sep 2008)
  463. - Ian Lynagh provided a patch that now makes CURLOPT_RANGE work fine for SFTP
  464.   downloads!
  465. - Maxim Ivanov filed bug report #2107803
  466.   (http://curl.haxx.se/bug/view.cgi?id=2107803) "no CURLINFO_REDIRECT_URL in
  467.   multi mode" together with a patch that fixed the problem.
  468. Daniel Stenberg (25 Sep 2008)
  469. - Emanuele Bovisio submitted bug report #2126435. We fixed the HTTP Digest
  470.   auth code to not behave badly when getting a blank realm with
  471.   realm="". http://curl.haxx.se/bug/view.cgi?id=2126435
  472. Daniel Fandrich (23 Sep 2008)
  473. - Make sure not to dereference the wrong UrlState proto union member when
  474.   switching from one protocol to another in a single request (e.g.
  475.   redirecting from HTTP to FTP as in test 1055) by resetting
  476.   state.expect100header before every request.
  477. Daniel Stenberg (23 Sep 2008)
  478. - Introducing Jamie Lokier's function for date to epoch conversion used in the
  479.   date parser function. This makes our function less dependent on system-
  480.   provided functions and instead we do all the magic ourselves. We also no
  481.   longer depend on the TZ environment variable. Switching to our own converter
  482.   has some side-effect and they are noted here for future reference (taken
  483.   from a mail by mr Lokier):
  484.   time_t is not measured in seconds in the ANSI C standard - or even counted
  485.   uniformly - weird platforms can use other numeric representations of dates
  486.   in time_t - hence the difftime() function.
  487.   On POSIX time_t is measured in UTC seconds, which means not including leap
  488.   seconds.  But it's mentioned in a few places that some old POSIX-ish
  489.   environments include leap seconds in their time_t counts...
  490.   I'm pretty sure [the new implementation is] correct on anything truly POSIX.
  491.   And it's obviously a lot less dependent on platform quirks and corner cases
  492.   in many ways than the mktime() version.
  493. - Rob Crittenden brought a patch to "add some locking for thread-safety to NSS
  494.   implementation".
  495. Daniel Stenberg (22 Sep 2008)
  496. - Made the SOCKS code use the new Curl_read_plain() function to fix the bug
  497.   Markus Moeller reported: http://curl.haxx.se/mail/archive-2008-09/0016.html
  498. - recv() errors other than those equal to EAGAIN now cause proper
  499.   CURLE_RECV_ERROR to get returned. This made test case 160 fail so I've now
  500.   disabled it until we can figure out another way to exercise that logic.
  501. - Michael Goffioul filed bug report #2107377 "Problem with multi + GnuTLS +
  502.   proxy" (http://curl.haxx.se/bug/view.cgi?id=2107377) that showed how a multi
  503.   interface using program didn't work when built with GnuTLS and a CONNECT
  504.   request was done over a proxy (basically test 502 over a proxy to a HTTPS
  505.   site). It turned out the ssl connect function would get called twice which
  506.   caused the second call to fail.
  507. Daniel Fandrich (22 Sep 2008)
  508. - Fixed test 539 to handle an out of memory condition that shows up now
  509.   that memdebug.h is included in the test programs.
  510. Yang Tse (20 Sep 2008)
  511. - Fix regression in configure script which affected OpenSSL builds on MSYS.
  512. Yang Tse (19 Sep 2008)
  513. - configure script now checks availability of the alarm() function.
  514. Daniel Fandrich (18 Sep 2008)
  515. - Don't bother to install a SIGALRM handler unless alarm() is available.
  516.   Also, leave the existing SIGALRM handler alone if the timeout is too small
  517.   to handle.
  518. Daniel Fandrich (17 Sep 2008)
  519. - Removed reference to curl-ca-bundle.crt in the host verification failure
  520.   error message.
  521. Yang Tse (17 Sep 2008)
  522. - Improve configure detection of gethostname(), localtime_r(), strstr(),
  523.   getservbyport_r(), gethostbyaddr_r() and gethostbyname_r().
  524. Yang Tse (14 Sep 2008)
  525. - Improve configure detection of strcasecmp(), strcasestr(), strcmpi(),
  526.   stricmp(), strlcat(), strncasecmp(), strncmpi() and strnicmp().
  527. Yang Tse (13 Sep 2008)
  528. - Disable tracking of fdopen() calls in the low-level memory leak tracking
  529.   code when fdopen() is not available, to avoid compiler error.
  530. Yang Tse (12 Sep 2008)
  531. - Further adjust detection of strerror_r() in the configure process, and
  532.   ensure that errno is not modified inside Curl_strerror().
  533. Yang Tse (10 Sep 2008)
  534. - Improve detection of gmtime_r(), strtoll(), sigaction(), strtok_r(),
  535.   strdup() and ftruncate() in the configure process.
  536. Daniel Fandrich (9 Sep 2008)
  537. - Mike Revi discovered some swapped speed switches documented in the curl man
  538.   page.
  539. - Checked in some documentation and code improvements and fixes that I
  540.   discovered in the FreeBSD ports system.
  541. Daniel Stenberg (8 Sep 2008)
  542. - Dmitry Kurochkin patched a problem: I have found bug in pipelining through
  543.   proxy. I have a transparent proxy. When running with http_proxy environment
  544.   variable not set my test completes fine (it goes through transparent
  545.   proxy). When I set http_proxy variable my test hangs after the first
  546.   downloaded is complete. Looks like the second handle never gets out from
  547.   WAITDO state.
  548.   The fix: It makes checkPendPipeline move 1 handler from pend pipe to send
  549.   pipe if pipelining is not supported by server but there are no handles in
  550.   send and recv pipes.
  551. - Stefan Krause pointed out that libcurl would wrongly send away cookies to
  552.   sites in cases where the cookie clearly has a very old expiry date. The
  553.   condition was simply that libcurl's date parser would fail to convert the
  554.   date and it would then count as a (timed-based) match. Starting now, a
  555.   missed date due to an unsupported date format or date range will now cause
  556.   the cookie to not match.
  557. Daniel Fandrich (5 Sep 2008)
  558. - Improved the logic that decides whether to use HTTP 1.1 features or not in a
  559.   request.  Setting a specific version with CURLOPT_HTTP_VERSION overrides
  560.   all other checks, but otherwise, a 1.0 request will be made if the server
  561.   is known to support only 1.0 because it previously responded so and the
  562.   connection was kept alive, or a response to a previous request on this handle
  563.   came back as 1.0. The latter could take place in cases like redirection or
  564.   authentication where several requests have to be made before the operation
  565.   is complete.  If any one of the servers in a redirection chain supports only
  566.   1.0, then remaining requests will be sent in 1.0 mode.
  567. - Detect cases where an upload must be sent chunked and the server supports
  568.   only HTTP 1.0 and return CURLE_UPLOAD_FAILED.
  569. Daniel Stenberg (5 Sep 2008)
  570. - Martin Drasar provided the CURLOPT_POSTREDIR patch. It renames
  571.   CURLOPT_POST301 (but adds a define for backwards compatibility for you who
  572.   don't define CURL_NO_OLDIES). This option allows you to now also change the
  573.   libcurl behavior for a HTTP response 302 after a POST to not use GET in the
  574.   subsequent request (when CURLOPT_FOLLOWLOCATION is enabled). I edited the
  575.   patch somewhat before commit. The curl tool got a matching --post302
  576.   option. Test case 1076 was added to verify this.
  577. - Introducing CURLOPT_CERTINFO and the corresponding CURLINFO_CERTINFO. By
  578.   enabling this feature with CURLOPT_CERTINFO for a request using SSL (HTTPS
  579.   or FTPS), libcurl will gather lots of server certificate info and that info
  580.   can then get extracted by a client after the request has completed with
  581.   curl_easy_getinfo()'s CURLINFO_CERTINFO option. Linus Nielsen Feltzing
  582.   helped me test and smoothen out this feature.
  583.   Unfortunately, this feature currently only works with libcurl built to use
  584.   OpenSSL.
  585.   This feature was sponsored by networking4all.com - thanks!
  586. - Dmitriy Sergeyev pointed out that curl_easy_pause() didn't unpause properly
  587.   during certain conditions. I also changed this code to use realloc() based
  588.   on Daniel Fandrich's suggestion.
  589. Guenter Knauf (4 Sep 2008)
  590. - MingW32 non-configure builds are now largefile feature enabled by default.
  591.   NetWare LIBC builds are also now largefile feature enabled by default.
  592. Yang Tse (4 Sep 2008)
  593. - Several fixes related with print formatting string directives.
  594. Daniel Fandrich (3 Sep 2008)
  595. - Search for the FreeBSD CA cert file /usr/local/share/certs/ca-root.crt
  596. Daniel Fandrich (2 Sep 2008)
  597. - Fixed an out of memory problem that caused torture test failures in tests
  598.   706 and 707.
  599. Daniel Stenberg (2 Sep 2008)
  600. - Keith Mok added supported_protocols and supported_features to the pkg-config
  601.   file for libcurl, and while doing that fix he unified with curl-config.in
  602.   how the supported protocols and features are extracted and used, so both those
  603.   tools should now always be synced.
  604. Version 7.19.0 (1 September 2008)
  605. Daniel Fandrich (29 Aug 2008)
  606. - Added tests 1071 through 1074 to test automatic downgrading from HTTP 1.1
  607.   to HTTP 1.0 upon receiving a response from the HTTP server.  Tests 1072
  608.   and 1073 are similar to test 1069 in that they involve the impossible
  609.   scenario of sending chunked data to a HTTP 1.0 server.  All these fail
  610.   and are added to DISABLED.
  611. - Added test 1075 to test --anyauth with Basic authentication.
  612. Daniel Stenberg (29 Aug 2008)
  613. - When libcurl was doing a HTTP POST and the server would respond with
  614.   "Connection: close" and actually close the connection after the
  615.   response-body, libcurl could still have outstanding data to send and it
  616.   would not properly notice this and stop sending. This caused weirdness and
  617.   sad faces. http://curl.haxx.se/bug/view.cgi?id=2080222
  618.   Note that there are still reasons to consider libcurl's behavior when
  619.   getting a >= 400 response code while sending data, as Craig Perras' note
  620.   "http upload: how to stop on error" specifies:
  621.   http://curl.haxx.se/mail/archive-2008-08/0138.html
  622. Daniel Stenberg (28 Aug 2008)
  623. - Dengminwen reported that libcurl would lock a (cookie) share twice (without
  624.   an unlock in between) for a certain case and that in fact works when using
  625.   regular windows mutexes but not with pthreads'! Locks should of course not
  626.   get locked again so this is now fixed.
  627.   http://curl.haxx.se/mail/lib-2008-08/0422.html
  628. - I'm abandoning the system with the web site mirrors (but keeping download
  629.   files bing mirrored) and thus I've changed the URL in the cookiejar header
  630.   to no longer use curlm.haxx.se but instead use the main site curl.haxx.se
  631. Daniel Fandrich (27 Aug 2008)
  632. - Fixed test case 1065 by changing the handling of CURLOPT_UPLOAD to set
  633.   the HTTP method to GET (or HEAD) when given a value of 0.
  634. - Added test cases 1068 and 1069 to test a simple HTTP PUT from stdin.  Test
  635.   case 1069 fails in a similar manner to test 1065 so is added to DISABLED.
  636. Yang Tse (27 Aug 2008)
  637. - Fix generation of MS VC6 .dsp file to make it support compilation of either
  638.   dynamic (DLL) or static (LIB) libcurl libraries in debug and release modes.
  639. Daniel Fandrich (26 Aug 2008)
  640. - Fixed out of memory problems that caused torture test failures in tests
  641.   1021 and 1067.
  642. Yang Tse (26 Aug 2008)
  643. - Added check and symbol definition for WIN32 file API usage in configure,
  644.   supporting configure's --disable-largefile option for WIN32 targets also.
  645. - Non-configure systems which do not use config-win32.h configuration file,
  646.   and want to use the WIN32 file API, must define USE_WIN32_LARGE_FILES or
  647.   USE_WIN32_SMALL_FILES as appropriate in their own configuration files.
  648. Daniel Stenberg (23 Aug 2008)
  649. - Running 'make ca-firefox' in the root build dir will now run the new
  650.   firefox-db2pem.sh conversion script that converts a local Firefox db of ca
  651.   certs into PEM format, suitable for use with a OpenSSL or GnuTLS built
  652.   libcurl.
  653. - Constantine Sapuntzakis fixed a bug when doing proxy CONNECT with the multi
  654.   interface, and the proxy would send Connection: close during the
  655.   authentication phase.  http://curl.haxx.se/bug/view.cgi?id=2069047
  656. Daniel Fandrich (22 Aug 2008)
  657. - Fixed a problem when --dump-header - was given with more than one URL,
  658.   which caused an error when the second header was dumped due to stdout
  659.   being closed.  Added test case 1066 to verify.  Also fixed a potential
  660.   problem where a closed file descriptor might be used for an upload
  661.   when more than one URL is given.
  662. Yang Tse (22 Aug 2008)
  663. - Improved libcurl's internal curl_m*printf() functions integral data type
  664.   size and signedness handling.
  665. - Internal adjustments to better select/differentiate when large/small file
  666.   support is provided using WIN32 functions directly.
  667. Daniel Fandrich (20 Aug 2008)
  668. - Added an edited version of Vincent Le Normand's documentation of SFTP quote
  669.   commands to the man pages.
  670. Daniel Stenberg (20 Aug 2008)
  671. - Phil Pellouchoud pointed out that the windows version of libcurl had a
  672.   memory leak because it never called the OpenSSL function
  673.   CRYPTO_cleanup_all_ex_data() as it was supposed to. This was because of a
  674.   missing define in config-win32.h!
  675. Gisle Vanem (18 Aug 2008)
  676. - Updated lib/Makefile.Watcom with the option to use c-ares (USE_ARES=1).
  677. Yang Tse (18 Aug 2008)
  678. - Added test case 557 to verify libcurl's internal curl_m*printf() functions
  679.   formatting functionality when handling signed and unsigned longs, as well as
  680.   our curl_off_t data type.
  681. Yang Tse (17 Aug 2008)
  682. - OpenSSl enabled NetWare builds are changed to use the 'openssl' subdirectory
  683.   when including the OpenSSL header files. This is the recommended setting, this
  684.   prevents the undesired inclusion of header files with the same name as those
  685.   of OpenSSL but which do not belong to the OpenSSL package. The visible change
  686.   from previously released libcurl versions is that now OpenSSl enabled NetWare
  687.   builds also define USE_OPENSSL in config files, and that OpenSSL header files
  688.   must be located in a subdirectory named 'openssl'.
  689. Yang Tse (16 Aug 2008)
  690. - Library internal only C preprocessor macros FORMAT_OFF_T and FORMAT_OFF_TU
  691.   remain in use as internal curl_off_t print formatting strings for the internal
  692.   *printf functions which still cannot handle print formatting string directives
  693.   such as "I64d", "I64u", and others available on MSVC, MinGW, Intel's ICC, and
  694.   other DOS/Windows compilers.
  695. Daniel Fandrich (15 Aug 2008)
  696. - Added test case 1063 to test invalid long file ranges with file: URLs and
  697.   1064 to test multiple http PUTs.
  698. - Added test case 1065 to test a PUT with a single file but two URLs. This
  699.   was discovered to be problematic while investigating an incident reported by
  700.   Von back in May.  curl in this case doesn't include a Content-Length: or
  701.   Transfer-Encoding: chunked header which is illegal. This test case is
  702.   added to DISABLED until a solution is found.
  703. Yang Tse (15 Aug 2008)
  704. - C preprocessor macros used internally and equally available externally which
  705.   aid in the use of the curl_off_t data type are named: CURL_FORMAT_CURL_OFF_T,
  706.   CURL_FORMAT_CURL_OFF_TU, CURL_SIZEOF_CURL_OFF_T, CURL_SUFFIX_CURL_OFF_T,
  707.   CURL_SUFFIX_CURL_OFF_TU, CURL_OFF_T_C and CURL_OFF_TU_C.
  708. Yang Tse (13 Aug 2008)
  709. - The size of long is a build time characteristic and as such it is now recorded
  710.   in curlbuild.h as CURL_SIZEOF_LONG. Definition now done from configure process
  711.   and in CVS curlbuild.h.dist for non-configure systems.
  712. Daniel Fandrich (12 Aug 2008)
  713. - Fixed a buffer overflow problem in Curl_proxyCONNECT that could occur
  714.   when a server responded with long headers and data.  Luckily, the buffer
  715.   overflowed into another unused buffer, so no actual harm was done.
  716.   Added test cases 1060 and 1061 to verify.
  717. Daniel Stenberg (12 Aug 2008)
  718. - Andy Tsouladze fixed runtests.pl to not attempt to execute the stunnel
  719.   _directory_ if that happened to appear in the path!
  720. Yang Tse (12 Aug 2008)
  721. - Added macros for minimum-width signed and unsigned curl_off_t integer
  722.   constants CURL_OFF_T_C and CURL_OFF_TU_C. The clever double helper macro
  723.   used internally to provide its functionality is thanks to Lars Nilsson.
  724. Daniel Fandrich (11 Aug 2008)
  725. - Fixed a boundary condition error in ftp_readresp() whereby a non-terminal
  726.   line of a multiline FTP response whose last byte landed exactly at the end
  727.   of the BUFSIZE-length buffer would be treated as the terminal response
  728.   line.  The following response code read in would then actually be the
  729.   end of the previous response line, and all responses from then on would
  730.   correspond to the wrong command. Test case 1062 verifies this.
  731. - Stop closing a never-opened ftp socket.
  732. Daniel Stenberg (11 Aug 2008)
  733. - Constantine Sapuntzakis filed bug report #2042430
  734.   (http://curl.haxx.se/bug/view.cgi?id=2042430) with a patch. "NTLM Windows
  735.   SSPI code is not thread safe". This was due to libcurl using static
  736.   variables to tell wether to load the necessary SSPI DLL, but now the loading
  737.   has been moved to the more suitable curl_global_init() call.
  738. - Constantine Sapuntzakis filed bug report #2042440
  739.   (http://curl.haxx.se/bug/view.cgi?id=2042440) with a patch. He identified a
  740.   problem when using NTLM over a proxy but the end-point does Basic, and then
  741.   libcurl would do wrong when the host sent "Connection: close" as the proxy's
  742.   NTLM state was erroneously cleared.
  743. Yang Tse (11 Aug 2008)
  744. - Added missing signed and unsigned curl_off_t integer constant suffixes for
  745.   internal and external use. CURL_SUFFIX_CURL_OFF_T, CURL_SUFFIX_CURL_OFF_TU.
  746. Daniel Fandrich (7 Aug 2008)
  747. - Fixed an uninitialized variable in multi_runsingle() that could cause a
  748.   request to prematurely end.
  749. - Added test1059 to test the FTP proxy tunnel problem fixed July 11.
  750. Yang Tse (7 Aug 2008)
  751. - Added curlbuild.h and curlrules.h header files to libcurl's public headers.
  752.   File curlbuild.h is a generated file on configure-capable systems. This is
  753.   a first step towards configure-based info in public headers. Currently only
  754.   used to provide support for a curl_off_t data type which is not gated to
  755.   off_t. Further details are documented inside these mentioned header files.
  756. - Fix CURL_CHECK_DEF so that when the expansion of the preprocessor symbol
  757.   results in a set of double-quoted strings, this macro will now return an
  758.   expansion which consists of a single double-quoted string as the result of
  759.   concatenating all of them.
  760. - Skip data type check in DO_CURL_OFF_T_CHECK macro when argument is empty.
  761. - Adjusted testcurl.pl to copy checked out curlbuild.h.dist as curlbuild.h
  762.   for non-configure targets when the host system doesn't run buildconf.bat.
  763. - Prevent buildconf from removing 'Makefile' and 'missing' files. This would
  764.   blow away our CVS checked files 'missing' and 'hiper/Makefile'.
  765. - Remove adjustment done to testcurl.pl to verify if change introduced by
  766.   Guenter Knauf in lib/Makefile.netware is enough to get the netware autobuilds
  767.   going again.
  768. Yang Tse (5 Aug 2008)
  769. - Changes done to buildconf script. Validate that autom4te and autoconf, as
  770.   well as aclocal and automake, versions match. Improve removal of previous
  771.   run generated files. Remove verbose debug logging of aclocal on Solaris.
  772. Daniel Stenberg (5 Aug 2008)
  773. - Yehoshua Hershberg found a problem that would make libcurl re-use a
  774.   connection with the multi interface even if a previous use of it caused a
  775.   CURLE_PEER_FAILED_VERIFICATION to get returned. I now make sure that failed
  776.   SSL connections properly close the connections.
  777. Daniel Stenberg (4 Aug 2008)
  778. - Test cases 1051, 1052 and 1055 were added by Daniel Fandrich on July 30 and
  779.   proved how PUT and POST with a redirect could lead to a "hang" due to the
  780.   data stream not being rewound properly when it had to in order to get sent
  781.   properly (again) to the subsequent URL. This is now fixed and these test
  782.   cases are no longer disabled.
  783. Yang Tse (4 Aug 2008)
  784. - Autoconf 2.62 has changed the behaviour of the AC_AIX macro which we use.
  785.   Prior versions of autoconf defined _ALL_SOURCE if _AIX was defined. 2.62
  786.   version of AC_AIX defines _ALL_SOURCE and other four preprocessor symbols
  787.   no matter if the system is AIX or not. To keep the traditional behaviour,
  788.   and an uniform one across autoconf versions AC_AIX is replaced with our
  789.   own internal macro CURL_CHECK_AIX_ALL_SOURCE.
  790. Daniel Stenberg (4 Aug 2008)
  791. - Test case 1041 (added by Daniel Fandrich July 14th) proved a bug where PUT
  792.   with -C - sent garbage in the Content-Range: header. I fixed this problem by
  793.   making sure libcurl always sets the size of the _entire_ upload if an app
  794.   attemps to do resumed uploads since libcurl simply cannot know the size of
  795.   what is currently at the server end. Test 1041 is no longer disabled.
  796. Yang Tse (2 Aug 2008)
  797. - No longer test availability of the gdi32 library, nor use it for linking, even
  798.   when we have been doing this since revision 1.47 of configure.ac 4 years and
  799.   5 months ago when cross-compiling a Windows target. We actually don't use any
  800.   function from the Windows GDI (Graphics Device Interface) related with drawing
  801.   or graphics-related operations.
  802. Daniel Fandrich (1 Aug 2008)
  803. - Added support for --append on SFTP uploads. Unfortunately, OpenSSH doesn't
  804.   support this so it goes untested.
  805. Yang Tse (1 Aug 2008)
  806. - Configure process now checks if the preprocessor _REENTRANT symbol is already
  807.   defined. If it isn't currently defined a set of checks are performed to test
  808.   if its definition is required to make visible to the compiler a set of *_r
  809.   functions. Finally, if _REENTRANT is already defined or needed it takes care
  810.   of making adjustments necessary to ensure that it is defined equally for the
  811.   configure process tests and generated config file.
  812. - Removed definition of CURL_CHECK_WORKING_RESOLVER from acinclude.m4 it has
  813.   not been in use since revision 1.81 of configure.in 6 years, 9 months ago.
  814. Daniel Fandrich (31 Jul 2008)
  815. - Fixed parsing of an IPv6 proxy address to support a scope identifier,
  816.   as well as IPv4 addresses in IPv6 format. Also, better handle the case
  817.   of a malformatted IPv6 address (avoid empty and NULL strings).
  818. - Fixed a problem with any FTP URL or any URLs containing an IPv6 address
  819.   being mangled when passed to proxies when CURLOPT_PORT is also set
  820.   (reported by Pramod Sharma).
  821. - User names embedded in proxy URLs without a password were parsed
  822.   incorrectly--the host name is treated as part of the user name and the
  823.   port number becomes the password.  This can be observed in test 279
  824.   (was KNOWN_ISSUE #54).
  825. Daniel Stenberg (30 Jul 2008)
  826. - Phil Blundell added the CURLOPT_ADDRESS_SCOPE option, as well as adjusted
  827.   the URL parser to allow numerical IPv6-addresses to be specified with the
  828.   scope given, as per RFC4007 - with a percent letter that itself needs to be
  829.   URL escaped. For example, for an address of fe80::1234%1 the HTTP URL is:
  830.   "http://[fe80::1234%251]/"
  831. - PHP's bug report #43158 (http://bugs.php.net/bug.php?id=43158) identifies a
  832.   true bug in libcurl built with OpenSSL. It made curl_easy_getinfo() more or
  833.   less always return 0 for CURLINFO_SSL_VERIFYRESULT because the function that
  834.   would set it to something non-zero would return before the assign in almost
  835.   all error cases. The internal variable is now set to non-zero from the start
  836.   of the function only to get cleared later on if things work out fine.
  837. - Made the curl tool's -w option support the %{ssl_verify_result} variable
  838. Daniel Fandrich (30 Jul 2008)
  839. - Added test cases 1052 through 1055 to test uploading data from files
  840.   during redirects.  Test cases 1052 and 1055 show problems (maybe the same
  841.   root cause as 1051) and are disabled.
  842. - Fixed a couple of buffer overflows in the MS-DOS port of the curl tool.
  843. Daniel Fandrich (29 Jul 2008)
  844. - Fixed --use-ascii to properly convert text files on Symbian OS, MS-DOS
  845.   and OS/2.
  846. - Added test case 1051 to test Location: following with PUT, as reported
  847.   by Ben Sutcliffe.  The test when run manually shows a problem in curl
  848.   so it's disabled.
  849. Daniel Fandrich (28 Jul 2008)
  850. - Fixed display of the interface bind address in the trace output when it's
  851.   an IPv6 address.
  852. - Added test cases 1045 through 1049 as simple tests of --interface using the
  853.   localhost interface.
  854. - Added test case 1050 to test --ftp-port with an IPv6 address
  855. Daniel Stenberg (26 Jul 2008)
  856. - David Bau filed bug report #2026240 "CURL_READFUNC_PAUSE leads to buffer
  857.   overrun" (http://curl.haxx.se/bug/view.cgi?id=2026240) identifying two
  858.   problems, and providing the fix for them:
  859.   - CURL_READFUNC_PAUSE did in fact not pause the _sending_ of data that it is
  860.     designed for but paused _receiving_ of data!
  861.   - libcurl didn't internally set the read counter to zero when this return
  862.     code was detected, which would potentially lead to junk getting sent to
  863.     the server.
  864. Daniel Fandrich (26 Jul 2008)
  865. - Added test 1044 to test large file support in ftp with -I.
  866. - Eliminate a unnecessary socket creation in Curl_getaddrinfo for an IPv4
  867.   address in an IPv6 capable libcurl.
  868. - Added feature in runtests.pl to select tests based on key word.
  869. Daniel Fandrich (23 Jul 2008)
  870. - Changed the long logfile elision code in runtests.pl to properly handle
  871.   lines ending in r.
  872. - Changed references to TRUE and FALSE in the curl_easy_setopt man page to
  873.   1 and zero, respectively, since TRUE and FALSE aren't part of the
  874.   libcurl API.
  875. Daniel Stenberg (23 Jul 2008)
  876. - I went over the curl_easy_setopt man page and replaced most references to
  877.   non-zero with the fixed value of 1. We should strive at making options
  878.   support '1' for enabling them mentioned explicitly, as that then will allow
  879.   us for to extend them in the future without breaking older programs.
  880.   Possibly we should even introduce a fancy define to use instead of '1' all
  881.   over...
  882. Yang Tse (21 Jul 2008)
  883. - Use the sreadfrom() wrapper to replace recvfrom() in our code.
  884. Yang Tse (20 Jul 2008)
  885. - when recvfrom prototype uses a void pointer for arguments 2, 5 or 6 this will
  886.   now cause the definition, as appropriate, of RECVFROM_TYPE_ARG2_IS_VOID,
  887.   RECVFROM_TYPE_ARG5_IS_VOID or RECVFROM_TYPE_ARG6_IS_VOID.
  888. Yang Tse (17 Jul 2008)
  889. - RECVFROM_TYPE_ARG2, RECVFROM_TYPE_ARG5 and RECVFROM_TYPE_ARG6 are now defined
  890.   to the data type pointed by its respective argument and not the pointer type.
  891. Yang Tse (16 Jul 2008)
  892. - Configure process now checks availability of recvfrom() socket function and
  893.   finds out its return type and the types of its arguments. Added definitions
  894.   for non-configure systems config files, and introduced macro sreadfrom which
  895.   will be used on udp sockets as a recvfrom() wrapper.
  896. Yang Tse (15 Jul 2008)
  897. - Added description/comment to include paths used in several Makefile.am files.
  898.   Added automake option nostdinc to test servers makefile and modified libcurl
  899.   external headers include path for libtest programs.
  900. Daniel Fandrich (14 Jul 2008)
  901. - Added test1040 through test1043 to test -C - on HTTP. Test 1041 failed so
  902.   it's added to DISABLED.
  903. Yang Tse (14 Jul 2008)
  904. - HTTP_ONLY definition check in lib/setup.h is now done once that configuration
  905.   file has been included. In this way if symbol is defined in the config file
  906.   it will no longer be ignored.  Removed inclusion of remaining system header
  907.   files from configuration files. Moved _REENTRANT definition up/earlier in
  908.   lib/setup.h
  909. Yang Tse (11 Jul 2008)
  910. - Added missing multiple header inclusion prevention definition for header
  911.   file content_encoding.h
  912. Daniel Fandrich (11 Jul 2008)
  913. - Fixed test 553 to pass the torture test.
  914. Daniel Stenberg (11 Jul 2008)
  915. - Daniel Fandrich found out we didn't pass on the user-agent properly when
  916.   doing "proxy-tunnels" with non-HTTP prototols and that was simply because
  917.   the code assumed the user-agent was only needed for HTTP.
  918. Daniel Fandrich (10 Jul 2008)
  919. - Changed slightly the SFTP quote commands chmod, chown and chgrp to only
  920.   set the attribute that has changed instead of all possible ones. Hopefully,
  921.   this will solve the "Permission denied" problem that Nagarajan Sreenivasan
  922.   reported when setting some modes, but regardless, it saves a protocol
  923.   round trip in the chmod case.
  924. - Added test cases 1038 and 1039 to test Adrian Kreher's report that ftp
  925.   uploads with -C - didn't resume properly, but the tests pass.
  926. Yang Tse (10 Jul 2008)
  927. - Peter Lamberg filed bug report #2015126: "poll gives WSAEINVAL when POLLPRI
  928.   is set in fdset.events" (http://curl.haxx.se/bug/view.cgi?id=2015126) which
  929.   exactly pinpointed the problem only triggered on Windows Vista, provided
  930.   reference to docs and also a fix. There is much work behind Peter Lamberg's
  931.   excellent bug report. Thank You!
  932. Daniel Fandrich (9 Jul 2008)
  933. - Added tests 1036 and 1037 to verify resumed ftp downloads with -C -
  934. Daniel Stenberg (9 Jul 2008)
  935. - Andreas Schuldei improved Phil Blundell's patch for IPv6 using c-ares, and I
  936.   edited it slightly. Now you should be able to use IPv6 addresses fine even
  937.   with libcurl built to use c-ares.
  938. Daniel Fandrich (9 Jul 2008)
  939. - Fixed an OOM handling problem that cause test 11 to fail the torture test.
  940. Daniel Fandrich (8 Jul 2008)
  941. - Fixed test 554 to pass the torture test.
  942. Daniel Fandrich (7 Jul 2008)
  943. - Added test cases 1034 & 1035 to test IDN name conversion failures.
  944. Daniel Stenberg (7 Jul 2008)
  945. - Scott Barrett provided a test case for a segfault in the FTP code and the
  946.   fix for it. It occured when you did a FTP transfer using
  947.   CURLFTPMETHOD_SINGLECWD and then did another one on the same easy handle but
  948.   switched to CURLFTPMETHOD_NOCWD. Due to the "dir depth" variable not being
  949.   cleared properly.  Scott's test case is now known as test 539 and it
  950.   verifies the fix.
  951. Daniel Stenberg (3 Jul 2008)
  952. - Phil Blundell provided a fix for libcurl's treatment of unexpected 1xx
  953.   response codes. Previously libcurl would hang on such occurances. I added
  954.   test case 1033 to verify.
  955. - Introcuding a new timestamp for curl_easy_getinfo():
  956.   CURLINFO_APPCONNECT_TIME. This is set with the "application layer"
  957.   handshake/connection is completed. Which typically is SSL, TLS or SSH and by
  958.   using this you can figure out the application layer's own connect time. You
  959.   can extract the time stamp using curl's -w option and the new variable named
  960.   'time_appconnect'. This feature was sponsored by Lenny Rachitsky at NeuStar.
  961. Daniel Fandrich (2 Jul 2008)
  962. - Support Open Watcom C on Linux (as well as Windows).
  963. Yang Tse (2 Jul 2008)
  964. - The previously committed fix for bug report #1999181 prevented using the
  965.   monotonic clock on any system without an always supported POSIX compliant
  966.   implementation. Now the POSIX compliant configuration check is removed and
  967.   will fallback to gettimeofday when the monotonic clock is unavailable at
  968.   run-time.
  969. - The configure process will now halt when sed, grep, egrep or ar programs
  970.   can not be found among the directories in PATH variable.
  971. Daniel Stenberg (1 Jul 2008)
  972. - Rolland Dudemaine provided fixes to get libcurl to build for the INTEGRITY
  973.   operating system.
  974. Daniel Stenberg (30 Jun 2008)
  975. - Made the internal printf() support %llu properly to print unsigned long longs.
  976. - Stephen Collyer and Tor Arntsen helped identify a flaw in the range code
  977.   which output the range using a signed variable where it should rather use
  978.   unsigned.
  979. Yang Tse (29 Jun 2008)
  980. - John Lightsey filed bug report #1999181: "CLOCK_MONOTONIC always fails on
  981.   some systems" (http://curl.haxx.se/bug/view.cgi?id=1999181). The problem was
  982.   that the configure script did not use the _POSIX_MONOTONIC_CLOCK feature test
  983.   macro when checking monotonic clock availability. This is now fixed and the
  984.   monotonic clock will not be used unless the feature test macro is defined
  985.   with a value greater than zero indicating always supported.
  986. Daniel Fandrich (25 Jun 2008)
  987. - Honour --stderr with the -v option.
  988. - Fixed a file handle leak in the command line client if more than one
  989.   --stderr option was given.
  990. Daniel Stenberg (22 Jun 2008)
  991. - Eduard Bloch filed the debian bug report #487567
  992.   (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=487567) pointing out that
  993.   libcurl used Content-Range: instead of Range when doing a range request with
  994.   --head (CURLOPT_NOBODY). This is now fixed and test case 1032 was added to
  995.   verify.
  996. Daniel Fandrich (21 Jun 2008)
  997. - Stopped using ranges in scanf character sequences (e.g. %[a-z]) since that
  998.   is not ANSI C, just a common extension.  This caused problems on
  999.   at least Open Watcom C.
  1000. Yang Tse (20 Jun 2008)
  1001. - Modified configuration script to actually verify if the compiler is good
  1002.   enough at detecting compilation errors or at least it has been properly
  1003.   configured to do so. Configuration heavily depends on this capability, so
  1004.   if this compiler sanity check fails the configuration process will now fail.
  1005. Daniel Stenberg (20 Jun 2008)
  1006. - Phil Pellouchoud found a case where libcurl built with NSS failed to
  1007.   handshake with a SSLv2 server, and it turned out to be because it didn't
  1008.   recognize the cipher named "rc4-md5". In our list that cipher was named
  1009.   plainly "rc4". I've now added rc4-md5 to work as an alias as Phil reported
  1010.   that it made things work for him again.
  1011. - Hans-Jurgen May pointed out that trying SCP or SFTP over a SOCKS proxy
  1012.   crashed libcurl. This is now addressed by making sure we use "plain send"
  1013.   internally when doing the socks handshake instead of the Curl_write()
  1014.   function which is designed to use the "target" protocol. That's then SCP or
  1015.   SFTP in this case. I also took the opportunity and cleaned up some ssh-
  1016.   related #ifdefs in the code for readability.
  1017. Daniel Stenberg (19 Jun 2008)
  1018. - Christopher Palow fixed a curl_multi_socket() issue which previously caused
  1019.   libcurl to not tell the app properly when a socket was closed (when the name
  1020.   resolve done by c-ares is completed) and then immediately re-created and put
  1021.   to use again (for the actual connection). Since the closure will make the
  1022.   "watch status" get lost in several event-based systems libcurl will need to
  1023.   tell the app about this close/re-create case.
  1024. - Dengminwen found a bug in the connection re-use function when using the
  1025.   multi interface with pipelining enabled as it would wrongly check for,
  1026.   detect and close "dead connections" even though that connection was already
  1027.   in use!
  1028. Daniel Fandrich (18 Jun 2008)
  1029. - Added SSH failure test cases 628-632
  1030. - Fixed a memory leak in the command-line tool that caused a valgrind error.
  1031. Daniel Stenberg (18 Jun 2008)
  1032. - Rob Crittenden brought a fix for the NSS layer that makes libcurl no longer
  1033.   always fire up a new connection rather than using the existing one when the
  1034.   multi interface is used. Original bug report:
  1035.   https://bugzilla.redhat.com/show_bug.cgi?id=450140
  1036. Yang Tse (18 Jun 2008)
  1037. - Internal configure script improvement. No longer break out of shell "for"
  1038.   statements from inside AC_FOO_IFELSE macros, otherwise temporary macro files
  1039.   are not properly removed.
  1040. Daniel Fandrich (12 Jun 2008)
  1041. - Fixed curl-config --ca which wasn't being exported by configure.
  1042. Daniel Stenberg (11 Jun 2008)
  1043. - I did a cleanup of the internal generic SSL layer and how the various SSL
  1044.   libraries are supported. Starting now, each underlying SSL library support
  1045.   code does a set of defines for the 16 functions the generic layer (sslgen.c)
  1046.   uses (all these new function defines use the prefix "curlssl_"). This
  1047.   greatly simplified the generic layer in readability by involving much less
  1048.   #ifdefs and other preprocessor stuff and should make it easier for people to
  1049.   make libcurl work with new SSL libraries.
  1050.   Hopefully I can later on document these 16 functions somewhat as well.
  1051.   I also made most of the internal SSL-dependent functions (using Curl_ssl_
  1052.   prefix) #defined to nothing when no SSL support is requested - previously
  1053.   they would unnecessarily call mostly empty functions.
  1054.   I've built libcurl with OpenSSL and GnuTLS and without SSL to test this and
  1055.   I've also tried building with NSS but the NSS support is a mystery to me and
  1056.   I failed to build libcurl with the NSS libraries I have installed. We really
  1057.   should A) improve our configure script to detect unsuitable NSS versions
  1058.   already at configure time and B) document our requirements better for the
  1059.   SSL libraries.
  1060. Daniel Stenberg (10 Jun 2008)
  1061. - I made the OpenSSL code build again with OpenSSL 0.9.6. The CRLFILE
  1062.   functionality killed it due to its unconditional use of
  1063.   X509_STORE_set_flags...
  1064. Daniel Stenberg (8 Jun 2008)
  1065. - Due to the three new libcurl changes and the massive command line option
  1066.   change I decided we'll mark it by bumping the next release number to 7.19.0!
  1067. - curl the tool now deals with its command line options somewhat differently!
  1068.   All boolean options (such as -O, -I, -v etc), both short and long versions,
  1069.   now always switch on/enable the option named. Using the same option multiple
  1070.   times thus make no difference. To switch off one of those options, you need
  1071.   to use the long version of the option and type --no-OPTION. Like to disable
  1072.   verbose mode you use --no-verbose!
  1073. - Added --remote-name-all to curl, which if used changes the default for all
  1074.   given URLs to be dealt with as if -O is used. So if you want to disable that
  1075.   for a specific URL after --remote-name-all has been used, you muse use -o -
  1076.   or --no-remote-name.
  1077. Daniel Stenberg (6 Jun 2008)
  1078. - Axel Tillequin and Arnaud Ebalard added support for CURLOPT_ISSUERCERT, for
  1079.   OpenSSL, NSS and GnuTLS-built libcurls.
  1080. - Axel Tillequin and Arnaud Ebalard added support for CURLOPT_CRLFILE, for
  1081.   OpenSSL, NSS and GnuTLS-built libcurls.
  1082. - Added CURLINFO_PRIMARY_IP as a new information retrievable with
  1083.   curl_easy_getinfo. It returns a pointer to a string with the most recently
  1084.   used IP address. Modified test case 500 to also verify this feature. The
  1085.   implementing of this feature was sponsored by Lenny Rachitsky at NeuStar.
  1086. Version 7.18.2 (4 June 2008)
  1087. Daniel Fandrich (3 Jun 2008)
  1088. - Fixed a problem where telnet data would be lost if an EWOULDBLOCK
  1089.   condition were encountered.
  1090. Marty Kuhrt (1 Jun 2008)
  1091. - Updated main.c to return CURLE_OK if PARAM_HELP_REQUESTED was returned
  1092.   from getparameter instead of CURLE_FAILED_INIT.  No point in returning
  1093.   an error if --help or --version were requested.
  1094. Daniel Stenberg (28 May 2008)
  1095. - Emil Romanus found a problem and helped me repeat it. It occured when using
  1096.   the curl_multi_socket() API with HTTP pipelining enabled and could lead to
  1097.   the pipeline basically stalling for a very long period of time until it took
  1098.   off again.
  1099. - Jeff Weber reported memory leaks with aborted SCP and SFTP transfers and
  1100.   provided excellent repeat recipes. I fixed the cases I managed to reproduce
  1101.   but Jeff still got some (SCP) problems even after these fixes:
  1102.   http://curl.haxx.se/mail/lib-2008-05/0342.html
  1103. Daniel Stenberg (26 May 2008)
  1104. - Bug report #1973352 (http://curl.haxx.se/bug/view.cgi?id=1973352) identified
  1105.   how the HTTP redirect following code didn't properly follow to a new URL if
  1106.   the new url was but a query string such as "Location: ?moo=foo". Test case
  1107.   1031 was added to verify this fix.
  1108. - Andreas Faerber and Scott McCreary made (lib)curl build for the Haiku OS.
  1109. Yang Tse (26 May 2008)
  1110. - David Rosenstrauch reported that header files spnegohelp.h and
  1111.   openssl/objects.h were needed to compile SPNEGO support.
  1112. Daniel Fandrich (22 May 2008)
  1113. - Made sure to pass longs in to curl_easy_setopt where necessary in the
  1114.   example programs and libtest code.
  1115. Daniel Stenberg (19 May 2008)
  1116. - When trying to repeat a multi interface problem I fell over a few multi
  1117.   interface problems:
  1118.   o with pipelining disabled, the state should never be set to WAITDO but
  1119.     rather go straight to DO
  1120.   o we had multiple states for which the internal function returned no socket
  1121.     at all to wait for, with the effect that libcurl calls the socket callback
  1122.     (when curl_multi_socket() is used) with REMOVE prematurely (as it would be
  1123.     added again within very shortly)
  1124.   o when in DO and DOING states, the HTTP and HTTPS protocol handler functions
  1125.     didn't return that the socket should be waited for writing, but instead it
  1126.     was treated as if no socket was needing monitoring so again REMOVE was
  1127.     called prematurely.
  1128. Daniel Stenberg (13 May 2008)
  1129. - Added test case 556 that uses curl_easy_send() and curl_easy_recv()
  1130. Daniel Stenberg (9 May 2008)
  1131. - Introducing curl_easy_send() and curl_easy_recv(). They can be used to send
  1132.   and receive data over a connection previously setup with curl_easy_perform()
  1133.   and its CURLOPT_CONNECT_ONLY option. The sendrecv.c example was added to
  1134.   show how they can be used.
  1135. Yang Tse (9 May 2008)
  1136. - Internal time differences now use monotonic time source if available.
  1137.   This also implies the removal of the winmm.lib dependency for WIN32.
  1138. Daniel Stenberg (9 May 2008)
  1139. - Stefan Krause reported a busy-looping case when using the multi interface
  1140.   and doing CONNECT to a proxy. The app would then busy-loop until the proxy
  1141.   completed its response.
  1142. Michal Marek (9 May 2008)
  1143. - Make Curl_write and it's callees accept a const pointer, in preparation
  1144.   of tetetest's patch for curl_easy_send()
  1145. Daniel Stenberg (7 May 2008)
  1146. - Liam Healy filed the debian bug report #480044
  1147.   (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=480044) identifying a
  1148.   segfault when using krb5 ftp, but the krb4 code had the same problem.
  1149. Yang Tse (7 May 2008)
  1150. - Christopher Palow provided the patch (edited by me) that introduces the
  1151.   use of microsecond resolution keys for internal splay trees.
  1152. Daniel Stenberg (4 May 2008)
  1153. - Yuriy Sosov pointed out a configure fix for detecting c-ares when that is
  1154.   built debug-enabled.
  1155. Daniel Stenberg (3 May 2008)
  1156. - Ben Van Hof filed bug report #1945240: "libcurl sometimes sends body twice
  1157.   when using CURL_AUTH_ANY" (http://curl.haxx.se/bug/view.cgi?id=1945240).
  1158.   The problem was that when libcurl rewound a stream meant for upload when it
  1159.   would prepare for a second request, it could accidentally continue the
  1160.   sending of the rewound data on the first request instead of on the second.
  1161.   Ben also provided test case 1030 that verifies this fix.
  1162. Daniel Stenberg (3 May 2008)
  1163. - Jean-Francois Bertrand reported a libcurl crash with CURLOPT_TCP_NODELAY
  1164.   since libcurl used getprotobyname() and that isn't thread-safe. We now
  1165.   switched to use IPPROTO_TCP unconditionally, but perhaps the proper fix is
  1166.   to detect the thread-safe version of the function and use that.
  1167.   http://curl.haxx.se/mail/lib-2008-05/0011.html
  1168. Daniel Stenberg (1 May 2008)
  1169. - Bart Whiteley provided a patch that made libcurl work properly when an app
  1170.   uses the CURLOPT_OPENSOCKETFUNCTION callback to create a unix domain socket
  1171.   to a http server.
  1172. Daniel Stenberg (29 Apr 2008)
  1173. - To make it easier for applications that want lots of magic stuff done on
  1174.   redirections and thus cannot use CURLOPT_FOLLOWLOCATION easily, we now
  1175.   introduce the new CURLINFO_REDIRECT_URL option that lets applications
  1176.   extract the URL libcurl would've redirected to if it had been told to. This
  1177.   then enables the application to continue to that URL as it thinks is
  1178.   suitable, without having to re-implement the magic of creating the new URL
  1179.   from the Location: header etc. Test 1029 verifies it.
  1180. Yang Tse (29 Apr 2008)
  1181. - Improved easy interface resolving timeout handling in c-ares enabled builds
  1182. Daniel Fandrich (28 Apr 2008)
  1183. - Added test 1028 to test an HTTP redirect to a FTP URL.
  1184. Daniel Stenberg (28 Apr 2008)
  1185. - Norbert Frese filed bug report #1951588: "Problem with curlftpfs and
  1186.   libcurl" (http://curl.haxx.se/bug/view.cgi?id=1951588) which seems to be an
  1187.   identical report to what Denis Golovan reported in
  1188.   http://curl.haxx.se/mail/lib-2008-02/0108.html The FTP code didn't reset the
  1189.   user/password pointers properly even though there might've been a new
  1190.   struct/cconnection getting used.
  1191. Daniel Stenberg (26 Apr 2008)
  1192. - Reverted back to use automake 1.9.6 in the next release (from automake
  1193.   1.10.1) since it *still* suffers from Solaris-related bugs. Our previous
  1194.   automake 1.10 problem was reported in bug #1701360
  1195.   (http://curl.haxx.se/bug/view.cgi?id=1701360) and this recent problem was
  1196.   bug #1944825 (http://curl.haxx.se/bug/view.cgi?id=1944825). I have not
  1197.   personally approached the automake team about either one of these but I
  1198.   figure we need a Solaris 10 guy to do it!
  1199. Yang Tse (25 Apr 2008)
  1200. - Added 'timeout' and 'delay' attributes support for the test harness
  1201.   <command> subsection.
  1202. Daniel Fandrich (24 Apr 2008)
  1203. - Made --stderr able to redirect all stderr messages.
  1204. Yang Tse (23 Apr 2008)
  1205. - Improve synchronization between test harness runtests.pl script
  1206.   and test harness servers to minimize risk of false test failures.
  1207. Daniel Fandrich (22 Apr 2008)
  1208. - Added support for running on Symbian OS.
  1209. Daniel Fandrich (18 Apr 2008)
  1210. - Added test cases 1026 and 1027 to do some rudimentary tests on the --manual
  1211.   and --help options.
  1212. Michal Marek (14 Apr 2008)
  1213. - allow disabling the typechecker by defining CURL_DISABLE_TYPECHECK, as
  1214.   discussed in http://curl.haxx.se/mail/lib-2008-04/0291.html
  1215. Daniel Stenberg (14 Apr 2008)
  1216. - Stefan Krause reported a case where the OpenSSL handshake phase wasn't
  1217.   properly acknowledging the timeout values, like if you pulled the network
  1218.   plug in the midst of it.
  1219. - Andre Guibert de Bruet fixed a second case of not checking the malloc()
  1220.   return code in the Negotiate code.
  1221. - Sandor Feldi reported bug #1942022
  1222.   (http://curl.haxx.se/bug/view.cgi?id=1942022) pointing out a mistake in the
  1223.   lib/Makefile.vc[68] makefiles' release-ssl-dll target.
  1224. - Brock Noland reported that curl behaved differently depending on which order
  1225.   you used -i and -I.
  1226. Daniel Stenberg (12 Apr 2008)
  1227. - Andre Guibert de Bruet found and fixed a case where malloc() was called but
  1228.   was not checked for a NULL return, in the Negotiate code.
  1229. Daniel Fandrich (9 Apr 2008)
  1230. - Added test cases 1024 & 1025 to test a scenario similar to the one reported
  1231.   by Ben Combee where libcurl would send the wrong cookie to a redirected
  1232.   server.  libcurl was doing the right thing in these test cases.
  1233. Michal Marek (7 Apr 2008)
  1234. - Fix the MIT / Heimdal check for good:
  1235.   Define HAVE_GSSMIT if <gssapi/{gssapi.h,gssapi_generic.h,gssapi_krb5.h}> are
  1236.   available, otherwise define HAVE_GSSHEIMDAL if <gssapi.h> is available.
  1237.   Only define GSS_C_NT_HOSTBASED_SERVICE to gss_nt_service_name if
  1238.   GSS_C_NT_HOSTBASED_SERVICE isn't declared by the gssapi headers. This should
  1239.   avoid breakage in case we wrongly recognize Heimdal as MIT again.
  1240. Daniel Stenberg (5 Apr 2008)
  1241. - Alexey Simak fixed curl_easy_reset() to reset the max redirect limit properly
  1242. - Based on the Debian bug report #474224 that complained about the FTP error
  1243.   message when libcurl doesn't get a 220 back immediately on connect, I now
  1244.   changed it to be more specific on what the problem is. Also worth noticing:
  1245.   while the bug report contains an example where the response is:
  1246.     421 There are too many connected users, please try again later
  1247.   we cannot assume that the error message will always be this readable nor
  1248.   that it fits within a particular boundary etc.
  1249. Daniel Fandrich (3 Apr 2008)
  1250. - Added test627 to test SFTP with CURLOPT_NOBODY
  1251. Daniel Stenberg (3 Apr 2008)
  1252. - Setting CURLOPT_NOBODY to FALSE will now switch the HTTP request method to
  1253.   GET simply because previously when you set CURLOPT_NOBODY to TRUE first and
  1254.   then FALSE you'd end up in a broken state where a HTTP request would do a
  1255.   HEAD by still act a lot like for a GET and hang waiting for the content etc.
  1256. - Scott Barrett added support for CURLOPT_NOBODY over SFTP
  1257. Daniel Fandrich (3 Apr 2008)
  1258. - Made sure that curl_global_init is called in all the multithreaded
  1259.   example programs.
  1260. Michal Marek (31 Mar 2008)
  1261. - Removed the generated ca-bundle.h file. The verbatim value of $ca and
  1262.   $capath is known to configure, so it can be defined in config.h instead.
  1263. Daniel Stenberg (31 Mar 2008)
  1264. - Added CURLFORM_STREAM as a supported option to curl_formadd() to allow an
  1265.   application to provide data for a multipart with the read callback. Note
  1266.   that the size needs to be provided with CURLFORM_CONTENTSLENGTH when the
  1267.   stream option is used. This feature is verified by the new test case
  1268.   554. This feature was sponsored by Xponaut.
  1269. Daniel Fandrich (30 Mar 2008)
  1270. - Changed the makefile so the doc/examples/ programs are never built in a
  1271.   normal build/install (only with the 'make check' target), so that a
  1272.   build failure in the examples isn't fatal.
  1273. Version 7.18.1 (30 March 2008)
  1274. Daniel Stenberg (28 Mar 2008)
  1275. - Stephen Collyer pointed out that configure --with-libssh2 without a given
  1276.   path didn't work properly.
  1277. Daniel Stenberg (27 Mar 2008)
  1278. - As found out and reported by Dan Petitt, libcurl didn't show progress/call
  1279.   the progress callback for the first (potentially huge) piece of body data
  1280.   sent together with the POST request headers in the initial send().
  1281. Daniel Stenberg (25 Mar 2008)
  1282. - Made setting the CURLOPT_SSL_CTX_FUNCTION option return a failure in case
  1283.   libcurl wasn't built to use OpenSSL as that is a prerequisite for this
  1284.   option to function!
  1285. Daniel Stenberg (22 Mar 2008)
  1286. - Fixed the problem with doing a zero byte SCP transfer, verified with test
  1287.   case 617 (which was added by Daniel Fandrich 5 Mar 2008).
  1288. Daniel Fandrich (20 Mar 2008)
  1289. - Fixed a problem where curl-config --protocols could erroneously show LDAPS
  1290.   support when curl didn't even have regular LDAP support.  It looks like
  1291.   this could happen when the --enable-ldaps configure switch is given but
  1292.   configure couldn't find the LDAP headers or libraries.
  1293. Michal Marek (20 Mar 2008)
  1294. - Added --with-ca-path=DIRECTORY configure option to use an openSSL CApath by
  1295.   default instead of a ca bundle. The configure script will also look for a
  1296.   ca path if no ca bundle is found and no option given.
  1297. - Fixed detection of previously installed curl-ca-bundle.crt
  1298. Daniel Fandrich (18 Mar 2008)
  1299. - Added test 626 to reproduce an infinite loop when given an invalid
  1300.   SFTP quote command reported by Vincent Le Normand, and fixed it.
  1301. Michal Marek (18 Mar 2008)
  1302. - Added curl_easy_getinfo typechecker.
  1303. - Added macros for curl_share_setopt and curl_multi_setopt to check at least
  1304.   the correct number of arguments.
  1305. Daniel Fandrich (13 Mar 2008)
  1306. - Added tests 622-625 to test SFTP/SCP uploads. Test 625 was an attempt to
  1307.   reproduce the --ftp-create-dirs problem reported by Brian Ulm, but that
  1308.   seems to need a call curl_easy_reset() which this test case doesn't do.
  1309. Daniel Stenberg (13 Mar 2008)
  1310. - Brian Ulm figured out that if you did an SFTP upload with
  1311.   CURLOPT_FTP_CREATE_MISSING_DIRS to create a directory, and then re-used the
  1312.   handle and uploaded another file to another directory that needed to be
  1313.   created, the second upload would fail. Another case of a state variable that
  1314.   wasn't properly reset between requests.
  1315. - I rewrote the 100-continue code to use a single state variable instead of
  1316.   the previous two ones. I think it made the logic somewhat clearer.
  1317. Daniel Stenberg (11 Mar 2008)
  1318. - Dmitry Popov filed bug report #1911069
  1319.   (http://curl.haxx.se/bug/view.cgi?id=1911069) that identified a race
  1320.   condition in the name resolver code when the DNS cache is shared between
  1321.   multiple easy handles, each running in simultaneous threads that could cause
  1322.   crashes.
  1323. - Added a macro for curl_easy_setopt() that accepts three arguments and simply
  1324.   does nothing with them, just to make sure libcurl users always use three
  1325.   arguments to this function. Due to its use of ... for the third argument, it
  1326.   is otherwise hard to detect abuse.
  1327. Michal Marek (11 Mar 2008)
  1328. - Added a type checking macro for curl_easy_setopt(), needs gcc-4.3 and only
  1329.   works in C mode atm (http://curl.haxx.se/mail/lib-2008-02/0267.html ,
  1330.   http://curl.haxx.se/mail/lib-2008-02/0292.html )
  1331. Daniel Fandrich (10 Mar 2008)
  1332. - Added tests 618-621 to test SFTP/SCP transfers of more than one file
  1333.   (test 620 tests the just-fixed problem reported by Brian Ulm).
  1334. Daniel Stenberg (9 Mar 2008)
  1335. - Brian Ulm reported a crash when doing a second SFTP transfer on a re-used
  1336.   easy handle if curl_easy_reset() was used between them. I fixed it and Brian
  1337.   verified that it cured his problem.
  1338. - Brian Ulm reported that if you first tried to download a non-existing SFTP
  1339.   file and then fetched an existing one and re-used the handle, libcurl would
  1340.   still report the second one as non-existing as well! I fixed it and Brian
  1341.   verified that it cured his problem.
  1342. Michal Marek (6 Mar 2008)
  1343. - Fix the gssapi configure check to detect newer MIT Kerberos (patch by
  1344.   Michael Calmer)
  1345. Yang Tse (6 Mar 2008)
  1346. - Fix regression on Curl_socket_ready() and Curl_poll() so that these will
  1347.   again fail on select/poll errors different than EINTR.
  1348. Daniel Fandrich (5 Mar 2008)
  1349. - Fixed the test harness so it will write out zero-length data files.
  1350. - Added tests 616 and 617 to see how SFTP and SCP cope with zero-length
  1351.   files, as questioned by Mike Protts. SFTP does for me but SCP doesn't
  1352.   so test 617 is disabled for now.
  1353. Daniel S (4 Mar 2008)
  1354. - Mike Protts brought a patch that makes resumed transfers work with SFTP.
  1355. Daniel S (1 Mar 2008)
  1356. - Anatoli Tubman found and fixed a crash with Negotiate authentication used on
  1357.   a re-used connection where both requests used Negotiate.
  1358. Guenter Knauf (26 Feb 2008)
  1359. - Kaspar Brand provided a patch to support server name indication (RFC 4366).
  1360. Daniel S (25 Feb 2008)
  1361. - Kaspar Brand made GnuTLS-built libcurl properly acknowledge the option that
  1362.   forces it to prefer SSLv3.
  1363. Daniel S (23 Feb 2008)
  1364. - Sam Listopad provided a patch in feature-request #1900014
  1365.   http://curl.haxx.se/bug/feature.cgi?id=1900014 that makes libcurl (built to
  1366.   use OpenSSL) support a full chain of certificates in a given PKCS12
  1367.   certificate.
  1368. Daniel S (22 Feb 2008)
  1369. - Georg Lippitsch made the src/Makefile.vc6 makefile use the same memory model
  1370.   options as the lib/Makefile.vc6 already did.
  1371. Daniel S (21 Feb 2008)
  1372. - Zmey Petroff found a crash when libcurl accessed a NULL pointer, which
  1373.   happened if you set the connection cache size to 1 and for example failed to
  1374.   login to an FTP site. Bug report #1896698
  1375.   (http://curl.haxx.se/bug/view.cgi?id=1896698)
  1376. Daniel S (20 Feb 2008)
  1377. - Fixed test case 405 to not fail when libcurl is built with GnuTLS
  1378. - Based on initial work done by Gautam Kachroo to address a bug, we now keep
  1379.   better control at the exact state of the connection's SSL status so that we
  1380.   know exactly when it has completed the SSL negotiation or not so that there
  1381.   won't be accidental re-uses of connections that are wrongly believed to be
  1382.   in SSL-completed-negotiate state.
  1383. - We no longer support setting the CURLOPT_URL option from inside a callback
  1384.   such as the CURLOPT_SSL_CTX_FUNCTION one treat that as if it was a Location:
  1385.   following. The patch that introduced this feature was done for 7.11.0, but
  1386.   this code and functionality has been broken since about 7.15.4 (March 2006)
  1387.   with the introduction of non-blocking OpenSSL "connects".
  1388.   It was a hack to begin with and since it doesn't work and hasn't worked
  1389.   correctly for a long time and nobody has even noticed, I consider it a very
  1390.   suitable subject for plain removal. And so it was done.
  1391. Guenter Knauf (19 Feb 2008)
  1392. - We do no longer support SSLv2 by default since it has known flaws.
  1393.   Kaspar Brand provided a patch for all supported SSL toolkits.
  1394. Daniel Fandrich (19 Feb 2008)
  1395. - Added test309 to test HTTP redirect to HTTPS URL
  1396. Daniel S (18 Feb 2008)
  1397. - We're no longer providing a very old ca-bundle in the curl tarball. You can
  1398.   get a fresh one downloaded and created with 'make ca-bundle' or you can get
  1399.   one from here => http://curl.haxx.se/docs/caextract.html if you want a fresh
  1400.   new one extracted from Mozilla's recent list of ca certs.
  1401.   The configure option --with-ca-bundle now lets you specify what file to use
  1402.   as default ca bundle for your build. If not specified, the configure script
  1403.   will check a few known standard places for a global ca cert to use.
  1404. Daniel S (17 Feb 2008)
  1405. - Jerome Muffat-Meridol helped me fix Curl_done() to close the current
  1406.   connection by force when it was called before the entire request is
  1407.   completed, simply because we can't know if the connection really can be
  1408.   re-used safely at that point.
  1409. - Based on the same debugging logic, I've also made Curl_http_done() not
  1410.   return CURLE_GOT_NOTHING if called "prematurely". This should have no real
  1411.   effect to anything but the code makes more sense like this.
  1412. Daniel S (15 Feb 2008)
  1413. - Made the gnutls code path not even try to get the server cert if no peer
  1414.   verification is requested. Previously it would even return failure if gnutls
  1415.   failed to get the server cert even though no verification was asked for.
  1416.   Public server showing the problem: https://www.net222.caisse-epargne.fr
  1417. - Fix my Curl_timeleft() leftover mistake in the gnutls code
  1418. - Pooyan McSporran found and fixed a flaw where you first would do a normal
  1419.   http request and then you'd reuse the handle and replace the Accept: header,
  1420.   as then libcurl would send two Accept: headers!
  1421. Daniel S (11 Feb 2008)
  1422. - Yang Tse pointed out a few remaining quirks from my timeout refactoring from
  1423.   Feb 7 that didn't abort properly on timeouts. These are actually old
  1424.   problems but now they should be fixed.
  1425. Yang Tse (10 Feb 2008)
  1426. - Bug report #1888932 (http://curl.haxx.se/bug/view.cgi?id=1888932) points out
  1427.   and provides test program that demonstrates that libcurl might not set error
  1428.   description message for error CURLE_COULDNT_RESOLVE_HOST for Windows threaded
  1429.   name resolver builds. Fixed now.
  1430. Daniel Fandrich (8 Feb 2008)
  1431. - Added key words to all SSL-using tests so they can be skipped if necessary.
  1432.   Removed a few unnecessary requires SSL statements.
  1433. Daniel S (8 Feb 2008)
  1434. - Mike Hommey filed and fixed bug report #1889856
  1435.   (http://curl.haxx.se/bug/view.cgi?id=1889856): When using the gnutls ssl
  1436.   layer, cleaning-up and reinitializing curl ends up with https requests
  1437.   failing with "ASN1 parser: Element was not found" errors. Obviously a
  1438.   regression added in 7.16.3.
  1439. Yang Tse (8 Feb 2008)
  1440. - Improved test harness SCP/SFTP start up server verification, doing a real
  1441.   connection to the sftp server, authenticating and running a simple sftp
  1442.   pwd command using the test harness generated configuration and key files.
  1443. Daniel S (8 Feb 2008)
  1444. - G黱ter Knauf added lib/mk-ca-bundle.pl which gets the Firefox ca bundle and
  1445.   creates a suitable ca-bundle.crt file in PEM format for use with curl. The
  1446.   recommended way to run it is to use 'make ca-bundle' in the build tree root.
  1447. Daniel Fandrich (7 Feb 2008)
  1448. - Added tests 1022 and 1023 to validate output of curl-config --version and
  1449.   --vernum
  1450. Daniel S (7 Feb 2008)
  1451. - Refactored a lot of timeout code into a few functions in an attempt to make
  1452.   them all use the same (hopefully correct) logic to make it less error-prone
  1453.   and easier to introduce library-wide where it should be used.
  1454. Yang Tse (6 Feb 2008)
  1455. - Fix an issue in strdup replacement function when dealing with absolutely
  1456.   huge strings. Only systems without a standard strdup would be affected.
  1457. Daniel S (3 Feb 2008)
  1458. - Dmitry Kurochkin cleaned up the pipelining code and removed the need for and
  1459.   use of the "is_in_pipeline" struct field.
  1460. - I wrote up and added the threaded-ssl.c example source code that shows how
  1461.   to do multi-threaded downloads of HTTPS files with a libcurl that is built
  1462.   with OpenSSL. It uses pthreads for the threading.
  1463. Daniel S (31 Jan 2008)
  1464. - Niklas Angebrand made the cookie support in libcurl properly deal with the
  1465.   "HttpOnly" feature introduced by Microsoft and apparently also supported by
  1466.   Firefox: http://msdn2.microsoft.com/en-us/library/ms533046.aspx . HttpOnly
  1467.   is now supported when received from servers in HTTP headers, when written to
  1468.   cookie jars and when read from existing cookie jars.
  1469.   I modified test case 31 and 46 to also do some basic HttpOnly testing.
  1470. - Dmitry Kurochkin moved several struct fields from the connectdata struct to
  1471.   the SingleRequest one to make pipelining better. It is a bit tricky to keep
  1472.   them in the right place, to keep things related to the actual request or to
  1473.   the actual connection in the right place.
  1474. Daniel S (29 Jan 2008)
  1475. - Dmitry Kurochkin fixed Curl_done() for pipelining, as it could previously
  1476.   crash!
  1477. - Michal Marek fixed minor mistake in test case 553 that prevented it from
  1478.   working on other IP-addresses or port numbers.
  1479. Version 7.18.0 (28 January 2008)
  1480. Daniel S (27 Jan 2008)
  1481. - Dmitry Kurochkin: In "real world" testing I found more bugs in
  1482.   pipelining. Broken connection is not restored and we get into infinite
  1483.   loop. It happens because of wrong is_in_pipeline values.
  1484. Daniel S (26 Jan 2008)
  1485. - Kevin Reed filed bug report #1879375
  1486.   (http://curl.haxx.se/bug/view.cgi?id=1879375) which describes how libcurl
  1487.   got lost in this scenario: proxy tunnel (or HTTPS over proxy), ask to do any
  1488.   proxy authentication and the proxy replies with an auth (like NTLM) and then
  1489.   closes the connection after that initial informational response.
  1490.   libcurl would not properly re-initialize the connection to the proxy and
  1491.   continue the auth negotiation like supposed. It does now however, as it will
  1492.   now detect if one or more authentication methods were available and asked
  1493.   for, and will thus retry the connection and continue from there.
  1494. - I made the progress callback get called properly during proxy CONNECT.
  1495. Daniel S (23 Jan 2008)
  1496. - Igor Franchuk pointed out that CURLOPT_COOKIELIST set to "ALL" leaked
  1497.   memory, and so did "SESS". Fixed now.
  1498. Yang Tse (22 Jan 2008)
  1499. - Check poll.h at configuration time, and use it when sys/poll.h unavailable
  1500. Daniel S (22 Jan 2008)
  1501. - Dmitry Kurochkin removed the cancelled state for pipelining, as we agreed
  1502.   that it is bad anyway. Starting now, removing a handle that is in used in a
  1503.   pipeline will break the pipeline - it'll be set back up again but still...
  1504. Yang Tse (21 Jan 2008)
  1505. - Disable ldap support for cygwin builds, since it breaks whole build process.
  1506.   Fixing it will affect other platforms, so it is postponed for another release.
  1507. Daniel S (18 Jan 2008)
  1508. - Lau Hang Kin found and fixed a problem with the multi interface when doing
  1509.   CONNECT over a proxy. curl_multi_fdset() didn't report back the socket
  1510.   properly during that state, due to a missing case in the switch in the
  1511.   multi_getsock() function.
  1512. Yang Tse (17 Jan 2008)
  1513. - Don't abort tests 518 and 537 when unable to raise the open-file soft limit.
  1514. Daniel S (16 Jan 2008)
  1515. - Nathan Coulter's patch that makes runtests.pl respect the PATH when figuring
  1516.   out what valgrind to run.
  1517. Yang Tse (16 Jan 2008)
  1518. - Improved handling of out of memory in the command line tool that afected
  1519.   data url encoded HTTP POSTs when reading it from a file.
  1520. Daniel S (16 Jan 2008)
  1521. - Dmitry Kurochkin worked a lot on improving the HTTP Pipelining support that
  1522.   previously had a number of flaws, perhaps most notably when an application
  1523.   fired up N transfers at once as then they wouldn't pipeline at all that
  1524.   nicely as anyone would think... Test case 530 was also updated to take the
  1525.   improved functionality into account.
  1526. - Calls to Curl_failf() are not supposed to provide a trailing newline as the
  1527.   function itself adds that. Fixed on 50 or something strings!
  1528. Daniel S (15 Jan 2008)
  1529. - I made the torture test on test 530 go through. This was actually due to
  1530.   silly code left from when we switched to let the multi handle "hold" the dns
  1531.   cache when using the multi interface... Of course this only triggered when a
  1532.   certain function call returned error at the correct moment.
  1533. Daniel S (14 Jan 2008)
  1534. - Joe Malicki filed bug report #1871269
  1535.   (http://curl.haxx.se/bug/view.cgi?id=1871269) and we could fix his hang-
  1536.   problem that occurred when doing a large HTTP POST request with the
  1537.   response-body read from a callback.
  1538. Daniel S (12 Jan 2008)
  1539. - I re-arranged the curl --help output. All the options are now sorted on
  1540.   their long option names and all descriptions are one-liners.
  1541. - Eric Landes provided the patch (edited by me) that introduces the
  1542.   --keepalive-time to curl to set the keepalive probe interval. I also took
  1543.   the opportunity to rename the recently added no-keep-alive option to
  1544.   no-keepalive to keep a consistent naming and to avoid getting two dashes in
  1545.   these option names. Eric also provided an update to the man page for the new
  1546.   option.
  1547. Daniel S (11 Jan 2008)
  1548. - Daniel Egger made CURLOPT_RANGE work on file:// URLs the very same way it
  1549.   already worked for FTP:// URLs.
  1550. - I made the curl tool switch from using CURLOPT_IOCTLFUNCTION to now use the
  1551.   spanking new CURLOPT_SEEKFUNCTION simply to take advantage of the improved
  1552.   performance for the upload resume cases where you want to upload the last
  1553.   few bytes of a very large file. To implement this decently, I had to switch
  1554.   the client code for uploading from fopen()/fread() to plain open()/read() so
  1555.   that we can use lseek() to do >32bit seeks (as fseek() doesn't allow that)
  1556.   on systems that offer support for that.
  1557. Daniel S (10 Jan 2008)
  1558. - Michal Marek made curl-config --libs not include /usr/lib64 in the output
  1559.   (it already before skipped /usr/lib).  /usr/lib64 is the default library
  1560.   directory on many 64bit systems and it's unlikely that anyone would use the
  1561.   path privately on systems where it's not.
  1562. - Georg Lippitsch brought CURLOPT_SEEKFUNCTION and CURLOPT_SEEKDATA to allow
  1563.   libcurl to seek in a given input stream. This is particularly important when
  1564.   doing upload resumes when there's already a huge part of the file present
  1565.   remotely. Before, and still if this callback isn't used, libcurl will read
  1566.   and through away the entire file up to the point to where the resuming
  1567.   begins (which of course can be a slow opereration depending on file size,
  1568.   I/O bandwidth and more). This new function will also be preferred to get
  1569.   used instead of the CURLOPT_IOCTLFUNCTION for seeking back in a stream when
  1570.   doing multi-stage HTTP auth with POST/PUT.
  1571. - Nikitinskit Dmitriy filed bug report #1868255
  1572.   (http://curl.haxx.se/bug/view.cgi?id=1868255) with a patch. It identifies
  1573.   and fixes a problem with parsing WWW-Authenticate: headers with additional
  1574.   spaces in the line that the parser wasn't written to deal with.
  1575. Daniel S (8 Jan 2008)
  1576. - Introducing curl_easy_pause() and new magic return codes for both the read
  1577.   and the write callbacks that now can make a connection's reading and/or
  1578.   writing get paused.
  1579. Daniel S (6 Jan 2008)
  1580. - Jeff Johnson filed bug report #1863171
  1581.   (http://curl.haxx.se/bug/view.cgi?id=1863171) where he pointed out that
  1582.   libcurl's date parser didn't accept a +1300 time zone which actually is used
  1583.   fairly often (like New Zealand's Dailight Savings Time), so I modified the
  1584.   parser to now accept up to and including -1400 to +1400.
  1585. Daniel S (5 Jan 2008)
  1586. - Based on further discussion on curl-library, I reverted yesterday's SOCKS5
  1587.   code to instead introduce support for a new proxy type called
  1588.   CURLPROXY_SOCKS5_HOSTNAME that is used to send the host name to the proxy
  1589.   instead of IP address and there's thus no longer any need for a new
  1590.   curl_easy_setopt() option.
  1591.   The default SOCKS5 proxy is again back to sending the IP address to the
  1592.   proxy.  The new curl command line option for enabling sending host name to a
  1593.   SOCKS5 proxy is now --socks5-hostname.
  1594. Daniel S (4 Jan 2008)
  1595. - Based on Maxim Perenesenko's patch, we now do SOCKS5 operations and let the
  1596.   proxy do the host name resolving and only if --socks5ip (or
  1597.   CURLOPT_SOCKS5_RESOLVE_LOCAL) is used we resolve the host name locally and
  1598.   pass on the IP address only to the proxy.
  1599. Yang Tse (3 Jan 2008)
  1600. - Modified test harness to allow SCP, SFTP and SOCKS4 tests to run with
  1601.   OpenSSH 2.9.9, SunSSH 1.0 or later versions. SOCKS5 tests need OpenSSH
  1602.   3.7, SunSSH 1.0 or later.
  1603. Daniel S (2 Jan 2008)
  1604. - I fixed two cases of missing return code checks when handling chunked
  1605.   decoding where a write error (or abort return from a callback) didn't stop
  1606.   libcurl's processing.
  1607. - I removed the socklen_t use from the public curl/curl.h header and instead
  1608.   made it an unsigned int. The type was only used in the curl_sockaddr struct
  1609.   definition (only used by the curl_opensocket_callback). On all platforms I
  1610.   could find information about, socklen_t is 32 unsigned bits large so I don't
  1611.   think this will break the API or ABI. The main reason for this change is of
  1612.   course for all the platforms that don't have a socklen_t definition in their
  1613.   headers to build fine again. Providing our own configure magic and custom
  1614.   definition of socklen_t on those systems proved to work but was a lot of
  1615.   cruft, code and extra magic needed - when this very small change of type
  1616.   seems harmless and still solves the missing socklen_t problem.
  1617. - Richard Atterer brought a patch that added support for SOCKS4a proxies,
  1618.   which is an inofficial PROXY4 variant that sends the hostname to the proxy
  1619.   instead of the resolved address (which is already supported by SOCKS5).
  1620.   --socks4a is the curl command line option for it and CURLOPT_PROXYTYPE can
  1621.   now be set to CURLPROXY_SOCKS4A as well.
  1622. Daniel S (1 Jan 2008)
  1623. - Mohun Biswas pointed out that --libcurl generated a source code with an int
  1624.   function but without a return statement. While fixing that, I also took care
  1625.   about adding some better comments for the generated code.