multi_socket: handles timer inaccuracy better for timeouts
[platform/upstream/curl.git] / CHANGES
1                                   _   _ ____  _
2                               ___| | | |  _ \| |
3                              / __| | | | |_) | |
4                             | (__| |_| |  _ <| |___
5                              \___|\___/|_| \_\_____|
6
7                                   Changelog
8
9 Daniel Stenberg (1 June 2010)
10 - Igor Novoseltsev reported a problem with the multi socket API and using
11   timeouts and timers. It boiled down to a problem with libcurl's use of
12   GetTickCount() interally to figure out the current time, while Igor's own
13   application code used another function call.
14
15   It made his app call the socket API timeout function a bit _before_ libcurl
16   would consider the timeout to trigger, and that could easily lead to
17   timeouts or stalls in the app. It seems GetTickCount() in general often has
18   no better resolution than 16ms and switching to the alternative function
19   QueryPerformanceCounter has its share of problems:
20       http://www.virtualdub.org/blog/pivot/entry.php?id=106
21
22   We address this problem by simply having libcurl treat timers that already
23   has occured or will occur within 40ms subject for treatment. I'm confident
24   that there are other implementations and operating systems with similarly in
25   accurate timer functions so it makes sense to have applied generically and I
26   don't believe we sacrifice much by adding a 40ms inaccuracy on these
27   timeouts.
28
29 Kamil Dudka (27 May 2010)
30 - added a new test for CRL support (test313)
31
32 - Tor Arntsen changed the alternative definition of bool to use enum instead
33   of unsigned char.
34
35 Daniel Stenberg (25 May 2010)
36 - Julien Chaffraix fixed the warning seen when compiling lib/rtmp.c: one
37   unused variables, several unused arguments and some missing #include.
38
39 - Julien Chaffraix fixed 2 OOM errors: a missing NULL-check in
40   lib/http_negociate.c and a potential NULL dereferencing in lib/splay.c
41
42 - Howard Chu brought a patch that makes the LDAP code much cleaner, nicer and
43   in general being a better libcurl citizen. If a new enough OpenLDAP version
44   is detect, the new and shiny lib/openldap.c code is then used instead of the
45   old cruft.
46
47 Daniel Stenberg (21 May 2010)
48 - Eric Mertens posted bug #3003705: when we made TFTP use the correct timeout
49   option when sent to the server (fixed May 18th 2010) it became obvious that
50   libcurl used invalid timeout values (300 by default while the RFC allows
51   nothing above 255). While of course it is obvious that as TFTP has worked
52   thus far without being able to set timeout at all, just removing the setting
53   wouldn't make any difference in behavior. I decided to still keep it (but
54   fix the problem) as it now actually allows for easier (future) customization
55   of the timeout.
56
57   (http://curl.haxx.se/bug/view.cgi?id=3003705)
58
59 - Douglas Kilpatrick filed bug report #3004787 and pointed out that the TFTP
60   code didn't handle block id wraps correctly. His suggested fix inspired the
61   fix I committed.
62
63   (http://curl.haxx.se/bug/view.cgi?id=3004787)
64
65 Daniel Stenberg (20 May 2010)
66 - Tanguy Fautre brought a fix to allow curl to build with Microsoft VC10.
67
68 Daniel Stenberg (18 May 2010)
69 - Eric Mertens posted bug report #3003005 pointing out that the libcurl TFTP
70   code was not sending the timeout option properly to the server, and
71   suggested a fix.
72
73   (http://curl.haxx.se/bug/view.cgi?id=3003005)
74
75 Kamil Dudka (16 May 2010)
76 - Pavel Raiskup introduced a new option CURLOPT_FNMATCH_DATA in order to pass
77   a custom data pointer to the callback specified by CURLOPT_FNMATCH_FUNCTION.
78
79 Daniel Stenberg (14 May 2010)
80 - John-Mark Bell filed bug #3000052 that identified a problem (with an
81   associated patch) with the OpenSSL handshake state machine when the multi
82   interface is used:
83
84   Performing an https request using a curl multi handle and using select or
85   epoll to wait for events results in a hang. It appears that the cause is the
86   fix for bug #2958179, which makes ossl_connect_common unconditionally return
87   from the step 2 loop when fetching from a multi handle.
88
89   When ossl_connect_step2 has completed, it updates connssl->connecting_state
90   to ssl_connect_3. ossl_connect_common will then return to the caller, as a
91   multi handle is in use. Eventually, the client code will call
92   curl_multi_fdset to obtain an updated fdset to select or epoll on. For https
93   requests, curl_multi_fdset will cause https_getsock to be called.
94   https_getsock will only return a socket handle if the connecting_state is
95   ssl_connect_2_reading or ssl_connect_2_writing.  Therefore, the client will
96   never obtain a valid fdset, and thus not drive the multi handle, resulting
97   in a hang.
98
99   (http://curl.haxx.se/bug/view.cgi?id=3000052)
100
101 - Sebastian V reported bug #3000056 identifying a problem with redirect
102   following. It showed that when curl followed redirects it didn't properly
103   ignore the response body of the 30X response if that response was using
104   compressed Content-Encoding!
105
106   (http://curl.haxx.se/bug/view.cgi?id=3000056)
107   
108 Daniel Stenberg (12 May 2010)
109 - Howard Chu brought support for RTMP. This is powered by the underlying
110   librtmp library. It supports a range of variations and "sub-protocols"
111   within the RTMP family.
112
113 - Pavel Raiskup brought support for FTP directory wildcard matching to allow
114   selective downloading. To provide that, a set of new options were added:
115
116    CURLOPT_WILDCARDMATCH
117    CURLOPT_CHUNK_BGN_FUNCTION
118    CURLOPT_CHUNK_END_FUNCTION
119    CURLOPT_CHUNK_DATA
120    CURLOPT_FNMATCH_FUNCTION
121
122   There were also a set of new tests added (574 - 577) to verify this.
123
124 Kamil Dudka (11 May 2010)
125 - CRL support in libcurl-NSS has been completely broken. Now it works. Original
126   bug report: https://bugzilla.redhat.com/581926
127
128 Daniel Stenberg (7 May 2010)
129 - Dirk Manske reported a regression. When connecting with the multi interface,
130   there were situations where libcurl wouldn't store connect time correctly as
131   it used to (and is documented to) do.
132
133   Using his fine sample program we could repeat it, and I wrote up test case
134   573 using that code. The problem does not easily show itself using the local
135   test suite though.
136
137   The fix, also as suggested by Dirk, is a bit on the ugly side as it adds yet
138   another call to Curl_verboseconnect() and setting the TIMER_CONNECT time.
139   That situation is subject for some closer inspection in the future.
140
141 - Howard Chu split the I/O handling functions into private handlers.
142     
143   Howard Chu brought the bulk work of this patch that properly moves out the
144   sending and recving of data to the parts of the code that are properly
145   responsible for the various ways of doing so.
146   
147   Daniel Stenberg assisted with polishing a few bits and fixed some minor
148   flaws in the original patch.
149   
150   Another upside of this patch is that we now abuse CURLcodes less with the
151   "magic" -1 return codes and instead use CURLE_AGAIN more consistently.
152
153 Daniel Stenberg (5 May 2010)
154 - Hoi-Ho Chan introduced support for using the PolarSSL library. You control
155   this with the new configure option --with-polarssl.
156
157 Daniel Stenberg (29 Apr 2010)
158 - Ben Greear made telnet a lot better/easier to use by an application:
159
160   The main change is to allow input from user-specified methods, when they are
161   specified with CURLOPT_READFUNCTION.  All calls to fflush(stdout) in
162   telnet.c were removed, which makes using 'curl telnet://foo.com' painful
163   since prompts and other data are not always returned to the user promptly.
164   Use 'curl --no-buffer telnet://foo.com' instead.  In general, the user
165   should have their CURLOPT_WRITEFUNCTION do a fflush for interactive use.
166
167   Also fix assumption that reading from stdin never returns < 0.
168   Old code could crash in that case.
169
170   Call progress functions in telnet main loop.
171
172 Daniel Stenberg (26 Apr 2010)
173 - Make use of the libssh2_init/exit functions that libssh2 added in version
174   1.2.5. Using them will improve how libcurl works in threaded situations when
175   SCP and SFTP are transfered.
176
177 Daniel Stenberg (25 Apr 2010)
178 - Based on work by Kamil Dudka, I've introduced the new configure option
179   --enable-threaded-resolver. When used, the configure script will check for
180   pthreads and if around, it will build libcurl to use pthreads to do name
181   resolving in a threaded manner. Note that this is just a fix to offer an
182   option that can enable the code that already included. The threader resolver
183   code was mostly added on Jan 26 2010.
184
185 Daniel Stenberg (24 Apr 2010)
186 - Alex Bligh introduced the --proto and -proto-redir options that limit what
187   protocols curl accepts for the requests and when following redirects.
188
189 Kamil Dudka (24 Apr 2010)
190 - Fixed test536 in order to not fail with threaded DNS resolver and tweaked
191   comments in certain examples using curl_multi_fdset().
192
193 - Fixed SSL handshake timeout underflow in libcurl-NSS, which caused test405
194   to hang on a slow machine.
195
196 Daniel Stenberg (21 Apr 2010)
197 - The -O option caused curl to crash on windows and DOS due to the tool
198   writing out of boundary memory.
199
200 Yang Tse (20 Apr 2010)
201 - Ruslan Gazizov detected that MSVC makefiles were using wsock32.lib instead
202   of ws2_32.lib, this generated linking issues on MSVC IPv6 enabled builds
203   that were done using those makefiles.
204
205 Daniel Stenberg (19 Apr 2010)
206 - -J/--remote-header-name didn't strip trailing carriage returns or linefeeds
207   properly, so they could be used in the file name.
208
209 Daniel Stenberg (16 Apr 2010)
210 - Jerome Vouillon made the GnuTLS SSL handshake phase non-blocking.
211
212 - The recent overhaul of the SSL recv function made the GnuTLS specific code
213   treat a zero returned from gnutls_record_recv() as an error, and this caused
214   our HTTPS test cases to fail. We leave it to upper layer code to detect if
215   an EOF is a problem or not.
216
217 - I reverted the resolver fix from yesterday and instead removed all uses of
218   AI_CANONNAME all over libcurl and made the only user of that info (krb5.c)
219   use the host name from the URL instead. No reverse resolving is a good
220   thing.
221
222 - Paul Howarth made configure properly detect GSS "on ancient Linux distros"
223   by editing in which order we use headers to detect GSS.
224
225 Daniel Stenberg (15 Apr 2010)
226 - Rainer Canavan filed bug report #2987196 that identified libcurl doing
227   unnecesary reverse name lookups in many cases when built to use IPv4 and
228   getaddrinfo(). The logic for ipv6 is now used for ipv4 too.
229
230   (http://curl.haxx.se/bug/view.cgi?id=2963679)
231
232 Version 7.20.1 (14 April 2010)
233
234 Daniel Stenberg (9 Apr 2010)
235 - Prefixing the FTP quote commands with an asterisk really only worked for the
236   postquote actions. This is now fixed and test case 227 has been extended to
237   verify.
238
239 Kamil Dudka (4 Apr 2010)
240 - Eliminated a race condition in Curl_resolv_timeout().
241
242 - Refactorized interface of Curl_ssl_recv()/Curl_ssl_send().
243
244 - libcurl-NSS now provides more accurate messages and error codes in case of
245   client certificate problem.  Either during connection, or transfer phase.
246
247 Daniel Stenberg (1 Apr 2010)
248 - Matt Wixson found and fixed a bug in the SCP/SFTP area where the code
249   treated a 0 return code from libssh2 to be the same as EAGAIN while in
250   reality it isn't. The problem caused a hang in SFTP transfers from a
251   MessageWay server.
252
253 Daniel Stenberg (28 Mar 2010)
254 - Ben Greear: If you pass a URL to pop3 that does not contain a message ID as
255   part of the URL, it would previously ask for 'INBOX' which just causes the
256   pop3 server to return an error.
257     
258   Now libcurl treats en empty message ID as a request for LIST (list of pop3
259   message IDs).  User's code could then parse this and download individual
260   messages as desired.
261
262 Daniel Stenberg (27 Mar 2010)
263 - Ben Greear brought a patch that from now on allows all protocols to specify
264   name and user within the URL, in the same manner HTTP and FTP have been
265   allowed to in the past - although far from all of the libcurl supported
266   protocls actually have that feature in their URL definition spec.
267
268 Daniel Stenberg (26 Mar 2010)
269 - Ben Greear brought code that makes the rate limiting code for the easy
270   interface a bit smoother as it introduces sub-second sleeps during it and it
271   also takes the buffer sizes into account.
272
273 Daniel Stenberg (24 Mar 2010)
274 - Bob Richmond: There's an annoying situation where libcurl will read new HTTP
275   response data from a socket, then check if it's a timeout if one is set. If
276   the last packet received constitutes the end of the response body, libcurl
277   still treats it as a timeout condition and reports a message like:
278
279   "Operation timed out after 3000 milliseconds with 876 out of 876 bytes 
280   received"
281
282   It should only a timeout if the timer lapsed and we DIDN'T receive the end
283   of the response body yet.
284
285 - Christopher Conroy fixed a problem with RTSP and GET_PARAMETER reported
286   to us by Massimo Callegari. There's a new test case 572 that verifies this
287   now.
288
289 - The 'ares' subtree has been removed from the source repository. It was
290   always a separate project that sort of piggybacked on the curl project since
291   the dawn of times and now the time has come for it to go stand on its own
292   legs and continue living its own life. All details on c-ares and its new
293   source code repository is found at http://c-ares.haxx.se/
294
295 Daniel Stenberg (23 Mar 2010)
296 - Kenny To filed the bug report #2963679 with patch to fix a problem he
297   experienced with doing multi interface HTTP POST over a proxy using
298   PROXYTUNNEL. He found a case where it would connect fine but bits.tcpconnect
299   was not set correct so libcurl didn't work properly.
300
301   (http://curl.haxx.se/bug/view.cgi?id=2963679)
302
303 - Akos Pasztory filed debian bug report #572276
304   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572276 mentioning a problem
305   with a resource that returns chunked-encoded _and_ with a Content-Length
306   and libcurl failed to properly ignore the latter information.
307
308 - Hauke Duden provided an example program that made the multi interface crash.
309   His example simply used the multi interface and did first one FTP transfer
310   and after completion it used a second easy handle and did another FTP
311   transfer on the same FTP server.
312
313   This triggered a bug in the "delayed easy handle kill" system that curl
314   uses: when an FTP connection is left alive it must keep an easy handle
315   around internally - only for the purpose of having an easy handle when it
316   later disconnects it. The code assumed that when the easy handle was removed
317   and an internal reference was made, that version could be killed later on
318   when a new easy handle came using the same connection. This was wrong as
319   Hauke's example showed that the removed handle wasn't killed for real until
320   later. This caused a double close attempt => segfault.
321
322 Daniel Stenberg (22 Mar 2010)
323 - Thomas Lopatic fixed the alarm()-based DNS timeout:
324
325   Looking at the code of Curl_resolv_timeout() in hostip.c, I think that in
326   case of a timeout, the signal handler for SIGALRM never gets removed. I
327   think that in my case it gets executed at some point later on when execution
328   has long left Curl_resolv_timeout() or even the cURL library.
329   
330   The code that is jumped to with siglongjmp() simply sets the error message
331   to "name lookup timed out" and then returns with CURLRESOLV_ERROR. I guess
332   that instead of simply returning without cleaning up, the code should have a
333   goto that jumps to the spot right after the call to Curl_resolv().
334
335 Kamil Dudka (22 Mar 2010)
336 - Douglas Steinwand contributed a patch fixing insufficient initialization in
337   Curl_clone_ssl_config()
338
339 Daniel Stenberg (21 Mar 2010)
340 - Ben Greear improved TFTP: the error code returning and the treatment
341   of TSIZE == 0 when uploading.
342
343 - We've switched from CVS to git. See http://curl.haxx.se/source.html
344
345 Kamil Dudka (19 Mar 2010)
346 - Improved Curl_read() to not ignore the error returned from Curl_ssl_recv().
347
348 Daniel Stenberg (15 Mar 2010)
349 - Constantine Sapuntzakis brought a patch:
350
351   The problem mentioned on Dec 10 2009
352   (http://curl.haxx.se/bug/view.cgi?id=2905220) was only partially fixed.
353   Partially because an easy handle can be associated with many connections in
354   the cache (e.g. if there is a redirect during the lifetime of the easy
355   handle).  The previous patch only cleaned up the first one. The new fix now
356   removes the easy handle from all connections, not just the first one.
357
358 Daniel Stenberg (6 Mar 2010)
359 - Ben Greear brought a patch that fixed the rate limiting logic for TFTP when
360   the easy interface was used.
361
362 Daniel Stenberg (5 Mar 2010)
363 - Daniel Johnson provided fixes for building curl with the clang compiler.
364
365 Yang Tse (5 Mar 2010)
366 - Constantine Sapuntzakis detected and fixed a double free in builds done
367   with threaded resolver enabled (Windows default configuration) that would
368   get triggered when a curl handle is closed while doing DNS resolution.
369
370 Daniel Stenberg (2 Mar 2010)
371 - [Daniel Johnson] I've been trying to build libcurl with clang on Darwin and
372   ran into some issues with the GSSAPI tests in configure.ac. The tests first
373   try to determine the include dirs and libs and set CPPFLAGS and LIBS
374   accordingly. It then checks for the headers and finally sets LIBS a second
375   time, causing the libs to be included twice. The first setting of LIBS seems
376   redundant and should be left out, since the first part is otherwise just
377   about finding headers.
378
379   My second issue is that 'krb5-config --libs gssapi' on Darwin is less than
380   useless and returns junk that, while it happens to work with gcc, causes
381   clang to choke. For example, --libs returns $CFLAGS along with the libs,
382   which is really retarded. Simply setting 'LIBS="$LIBS -lgssapi_krb5
383   -lresolv"' on Darwin is sufficient.
384
385 - Based on patch provided by Jacob Moshenko, the transfer logic now properly
386   makes sure that when using sub-second timeouts, there's no final bad 1000ms
387   wait. Previously, a sub-second timeout would often make the elapsed time end
388   up the time rounded up to the nearest second (e.g. 1s for 200ms timeout)
389
390 - Andrei Benea filed bug report #2956698 and pointed out that the
391   CURLOPT_CERTINFO feature leaked memory due to a missing OpenSSL function
392   call. He provided the patch to fix it too.
393
394   http://curl.haxx.se/bug/view.cgi?id=2956698
395
396 - Markus Duft pointed out in bug #2961796 that even though Interix has a
397   poll() function it doesn't quite work the way we want it so we must disable
398   it, and he also provided a patch for it.
399
400   http://curl.haxx.se/bug/view.cgi?id=2961796
401
402 - Made the pingpong timeout code properly deal with the response timeout AND
403   the global timeout if set. Also, as was reported in the bug report #2956437
404   by Ryan Chan, the time stamp to use as basis for the per command timeout was
405   not set properly in the DONE phase for FTP (and not for SMTP) so I fixed
406   that just now. This was a regression compared to 7.19.7 due to the
407   conversion of FTP code over to the generic pingpong concepts.
408
409   http://curl.haxx.se/bug/view.cgi?id=2956437
410
411 Daniel Stenberg (1 Mar 2010)
412 - Ben Greear provided an update for TFTP that fixes upload.
413
414 - Wesley Miaw reported bug #2958179 which identified a case of looping during
415   OpenSSL based SSL handshaking even though the multi interface was used and
416   there was no good reason for it.
417
418   http://curl.haxx.se/bug/view.cgi?id=2958179
419
420 Daniel Stenberg (26 Feb 2010)
421 - Pat Ray in bug #2958474 pointed out an off-by-one case when receiving a
422   chunked-encoding trailer.
423
424   http://curl.haxx.se/bug/view.cgi?id=2958474
425
426 Daniel Fandrich (25 Feb 2010)
427 - Fixed a couple of out of memory leaks and a segfault in the SMTP & IMAP code.
428
429 Yang Tse (25 Feb 2010)
430 - I fixed bug report #2958074 indicating
431   (http://curl.haxx.se/bug/view.cgi?id=2958074) that curl on Windows with
432   option --trace-time did not use local time when timestamping trace lines.
433   This could also happen on other systems depending on time souurce.
434
435 Patrick Monnerat (22 Feb 2010)
436 - Proper handling of STARTTLS on SMTP, taking CURLUSESSL_TRY into account.
437 - SMTP falls back to RFC821 HELO when EHLO fails (and SSL is not required).
438 - Use of true local host name (i.e.: via gethostname()) when available, as
439   default argument to SMTP HELO/EHLO.
440 - Test case 804 for HELO fallback.
441
442 Daniel Stenberg (20 Feb 2010)
443 - Fixed the SMTP compliance by making sure RCPT TO addresses are specified
444   properly in angle brackets. Recipients provided with CURLOPT_MAIL_RCPT now
445   get angle bracket wrapping automatically by libcurl unless the recipient
446   starts with an angle bracket as then the app is assumed to deal with that
447   properly on its own.
448
449 - I made the SMTP code expect a 250 response back from the server after the
450   full DATA has been sent, and I modified the test SMTP server to also send
451   that response. As usual, the DONE operation that is made after a completed
452   transfer is still not doable in a non-blocking way so this waiting for 250
453   is unfortunately made blockingly.
454
455 Yang Tse (14 Feb 2010)
456 - Overhauled test suite getpart() function. Fixing potential out of bounds
457   stack and memory overwrites triggered with huge test case definitions.
458
459 Daniel Stenberg (13 Feb 2010)
460 - Martin Hager reported and fixed a problem with a missing quote in libcurl.m4
461
462   (http://curl.haxx.se/bug/view.cgi?id=2951319)
463
464 - Tom Donovan fixed the CURL_FORMAT_* defines when building with cmake.
465
466   (http://curl.haxx.se/bug/view.cgi?id=2951269)
467
468 Daniel Stenberg (12 Feb 2010)
469 - Jack Zhang reported a problem with SMTP: we wrongly used multiple addresses
470   in the same RCPT TO line, when they should be sent in separate single
471   commands. I updated test case 802 to verify this.
472
473 - I also fixed a bad use of my_setopt_str() of CURLOPT_MAIL_RCPT in the curl
474   tool which made it try to output it as string for the --libcurl feature
475   which could lead to crashes.
476
477 Yang Tse (11 Feb 2010)
478 - Steven M. Schweda fixed VMS builder bad behavior when used in a batch job,
479   removed obsolete batch_compile.com and defines.com and updated VMS readme.
480
481 Version 7.20.0 (9 February 2010)
482
483 Daniel Stenberg (9 Feb 2010)
484 - When downloading compressed content over HTTP and the app asked libcurl to
485   automatically uncompress it with the CURLOPT_ENCODING option, libcurl could
486   wrongly provide the callback with more data than the maximum documented
487   amount. An application could thus get tricked into badness if the maximum
488   limit was trusted to be enforced by libcurl itself (as it is documented).
489
490   This is further detailed and explained in the libcurl security advisory
491   20100209 at
492
493     http://curl.haxx.se/docs/adv_20100209.html
494
495 Daniel Fandrich (3 Feb 2010)
496 - Changed the Watcom makefiles to make them easier to keep in sync with
497   Makefile.inc since that can't be included directly.
498
499 Yang Tse (2 Feb 2010)
500 - Symbol CURL_FORMAT_OFF_T now obsoleted, will be removed in a future release,
501   symbol will not be available when building with CURL_NO_OLDIES defined. Use
502   of CURL_FORMAT_CURL_OFF_T is preferred since 7.19.0
503
504 Daniel Stenberg (1 Feb 2010)
505 - Using the multi_socket API, it turns out at times it seemed to "forget"
506   connections (which caused a hang). It turned out to be an existing (7.19.7)
507   bug in libcurl (that's been around for a long time) and it happened like
508   this:
509
510   The app calls curl_multi_add_handle() to add a new easy handle, libcurl will
511   then set it to timeout in 1 millisecond so libcurl will tell the app about
512   it.
513
514   The app's timeout fires off that there's a timeout, the app calls libcurl as
515   we so often document it:
516
517   do {
518    res = curl_multi_socket_action(... TIMEOUT ...);
519   } while(CURLM_CALL_MULTI_PERFORM == res);
520
521   And this is the problem number one:
522
523   When curl_multi_socket_action() is called with no specific handle, but only
524   a timeout-action, it will *only* perform actions within libcurl that are
525   marked to run at this time. In this case, the request would go from INIT to
526   CONNECT and return CURLM_CALL_MULTI_PERFORM. When the app then calls libcurl
527   again, there's no timer set for this handle so it remains in the CONNECT
528   state. The CONNECT state is a transitional state in libcurl so it reports no
529   sockets there, and thus libcurl never tells the app anything more about that
530   easy handle/connection.
531
532   libcurl _does_ set a 1ms timeout for the handle at the end of
533   multi_runsingle() if it returns CURLM_CALL_MULTI_PERFORM, but since the loop
534   is instant the new job is not ready to run at that point (and there's no
535   code that makes libcurl call the app to update the timout for this new
536   timeout). It will simply rely on that some other timeout will trigger later
537   on or that something else will update the timeout callback. This makes the
538   bug fairly hard to repeat.
539
540   The fix made to adress this issue:
541
542   We introduce a loop in lib/multi.c around all calls to multi_runsingle() and
543   simply check for CURLM_CALL_MULTI_PERFORM internally. This has the added
544   benefit that this goes in line with my long-term wishes to get rid of the
545   CURLM_CALL_MULTI_PERFORM all together from the public API.
546
547   The downside of this fix, is that the counter we return in 'running_handles'
548   in several of our public functions then gets a slightly new and possibly
549   confusing behavior during times:
550
551   If an app adds a handle that fails to connect (very quickly) it may just
552   as well never appear as a 'running_handle' with this fix. Previously it
553   would first bump the counter only to get it decreased again at next call.
554   Even I have used that change in handle counter to signal "end of a
555   transfer". The only *good* way to find the end of a individual transfer
556   is calling curl_multi_info_read() to see if it returns one.
557
558   Of course, if the app previously did the looping before it checked the
559   counter, it really shouldn't be any new effect.
560
561 Yang Tse (26 Jan 2010)
562 - Constantine Sapuntzakis' and Joshua Kwan's work done in the last four months
563   relative to the asynchronous DNS lookups, along with with some integration
564   adjustments I have done are finally committed to CVS.
565
566   Currently these enhancements will benefit builds done using c-ares on any
567   platform as well as Windows builds using the default threaded resolver.
568
569   This release does not make generally available POSIX threaded DNS lookups
570   yet. There is no configure option to enable this feature yet. It is possible
571   to experimantally try this feature running configure with compiler flags that
572   make simultaneous definition of preprocessor symbols USE_THREADS_POSIX and
573   HAVE_PTHREAD_H, as well as whatever reentrancy compiler flags and linker ones
574   are required to link and properly use pthread_* functions on each platform.
575
576 Daniel Stenberg (26 Jan 2010)
577 - Mike Crowe made libcurl return CURLE_COULDNT_RESOLVE_PROXY when it is the
578   proxy that cannot be resolved when using c-ares. This matches the behaviour
579   when not using c-ares.
580
581 Björn Stenberg (23 Jan 2010)
582 - Added a new flag: -J/--remote-header-name. This option tells the
583   -O/--remote-name option to use the server-specified Content-Disposition
584   filename instead of extracting a filename from the URL.
585
586 Daniel Stenberg (21 Jan 2010)
587 - Chris Conroy brought support for RTSP transfers, and with it comes 8(!) new
588   libcurl options for controlling what to get and how to receive posssibly
589   interleaved RTP data.
590
591 Daniel Stenberg (20 Jan 2010)
592 - As was pointed out on the http-state mailing list, the order of cookies in a
593   HTTP Cookie: header _needs_ to be sorted on the path length in the cases
594   where two cookies using the same name are set more than once using
595   (overlapping) paths. Realizing this, identically named cookies must be
596   sorted correctly. But detecting only identically named cookies and take care
597   of them individually is harder than just to blindly and unconditionally sort
598   all cookies based on their path lengths. All major browsers also already do
599   this, so this makes our behavior one step closer to them in the cookie area.
600
601   Test case 8 was the only one that broke due to this change and I updated it
602   accordingly.
603
604 Daniel Stenberg (19 Jan 2010)
605 - David McCreedy brought a fix and a new test case (129) to make libcurl work
606   again when downloading files over FTP using ASCII and it turns out that the
607   final size of the file is not the same as the initial size the server
608   reported. This is very common since servers don't take the newline
609   conversions into account.
610
611 Kamil Dudka (14 Jan 2010)
612 - Suppressed side effect of OpenSSL configure checks, which prevented NSS from
613   being properly detected under certain circumstances. It had been caused by
614   strange behavior of pkg-config when handling PKG_CONFIG_LIBDIR. pkg-config
615   distinguishes among empty and non-existent environment variable in that case.
616
617 Daniel Stenberg (12 Jan 2010)
618 - Gil Weber reported a peculiar flaw with the multi interface when doing SFTP
619   transfers: curl_multi_fdset() would return -1 and not set and file
620   descriptors several times during a transfer of a single file. It turned out
621   to be due to two different flaws now fixed. Gil's excellent recipe helped me
622   nail this.
623
624 Daniel Stenberg (11 Jan 2010)
625 - Made sure that the progress callback is repeatedly called at a regular
626   interval even during very slow connects.
627
628 - The tests/runtests.pl script now checks to see if the test case that runs is
629   present in the tests/data/Makefile.am and outputs a notice message on the
630   screen if not. Each test file has to be included in that Makefile.am to get
631   included in release archives and forgetting to add files there is a common
632   mistake. This is an attempt to make it harder to forget.
633
634 Daniel Stenberg (9 Jan 2010)
635 - Johan van Selst found and fixed a OpenSSL session ref count leak:
636
637   ossl_connect_step3() increments an SSL session handle reference counter on
638   each call. When sessions are re-used this reference counter may be
639   incremented many times, but it will be decremented only once when done (by
640   Curl_ossl_session_free()); and the internal OpenSSL data will not be freed
641   if this reference count remains positive. When a session is re-used the
642   reference counter should be corrected by explicitly calling
643   SSL_SESSION_free() after each consecutive SSL_get1_session() to avoid
644   introducing a memory leak.
645
646   (http://curl.haxx.se/bug/view.cgi?id=2926284)
647
648 Daniel Stenberg (7 Jan 2010)
649 - Make sure the progress callback is called repeatedly even during very slow
650   name resolves when c-ares is used for resolving.
651
652 Claes Jakobsson (6 Jan 2010)
653 - Julien Chaffraix fixed so that the fragment part in an URL is not sent
654   to the server anymore.
655
656 Kamil Dudka (3 Jan 2010)
657 - Julien Chaffraix eliminated a duplicated initialization in singlesocket().
658
659 Daniel Stenberg (2 Jan 2010)
660 - Make curl support --ssl and --ssl-reqd instead of the previous FTP-specific
661   versions --ftp-ssl and --ftp-ssl-reqd as these options are now used to
662   control SSL/TLS for IMAP, POP3 and SMTP as well in addition to FTP. The old
663   option names are still working but the new ones are the ones listed and
664   documented.
665
666 Daniel Stenberg (1 Jan 2010)
667 - Ingmar Runge enhanced libcurl's FTP engine to support the PRET command. This
668   command is a special "hack" used by the drftpd server, but even though it is
669   a custom extension I've deemed it fine to add to libcurl since this server
670   seems to survive and people keep using it and want libcurl to support
671   it. The new libcurl option is named CURLOPT_FTP_USE_PRET, and it is also
672   usable from the curl tool with --ftp-pret. Using this option on a server
673   that doesn't support this command will make libcurl fail.
674
675   I added test cases 1107 and 1108 to verify the functionality.
676
677   The PRET command is documented at
678   http://www.drftpd.org/index.php/Distributed_PASV
679
680 Yang Tse (30 Dec 2009)
681 - Steven M. Schweda improved VMS build system, and Craig A. Berry helped
682   with the patch and testing.
683
684 Daniel Stenberg (26 Dec 2009)
685 - Renato Botelho and Peter Pentchev brought a patch that makes the libcurl
686   headers work correctly even on FreeBSD systems before v8.
687
688   (http://curl.haxx.se/bug/view.cgi?id=2916915)
689
690 Daniel Stenberg (17 Dec 2009)
691 - David Byron fixed Curl_ossl_cleanup to actually call ENGINE_cleanup when
692   available.
693
694 - Follow-up fix for the proxy fix I did for Jon Nelson's bug. It turned out I
695   was a bit too quick and broke test case 1101 with that change. The order of
696   some of the setups is sensitive. I now changed it slightly again to make
697   sure we do them in this order:
698
699   1 - parse URL and figure out what protocol is used in the URL
700   2 - prepend protocol:// to URL if missing
701   3 - parse name+password off URL, which needs to know what protocol is used
702       (since only some allows for name+password in the URL)
703   4 - figure out if a proxy should be used set by an option
704   5 - if no proxy option, check proxy environment variables
705   6 - run the protocol-specific setup function, which needs to have the proxy
706       already set
707
708 Daniel Stenberg (15 Dec 2009)
709 - Jon Nelson found a regression that turned out to be a flaw in how libcurl
710   detects and uses proxies based on the environment variables. If the proxy
711   was given as an explicit option it worked, but due to the setup order
712   mistake proxies would not be used fine for a few protocols when picked up
713   from '[protocol]_proxy'. Obviously this broke after 7.19.4. I now also added
714   test case 1106 that verifies this functionality.
715
716   (http://curl.haxx.se/bug/view.cgi?id=2913886)
717
718 Daniel Stenberg (12 Dec 2009)
719 - IMAP, POP3 and SMTP support and their TLS versions (including IMAPS, POP3S
720   and SMTPS) are now supported. The current state may not yet be solid, but
721   the foundation is in place and the test suite has some initial support for
722   these protocols. Work will now persue to make them nice libcurl citizens
723   until release.
724
725   The work with supporting these new protocols was sponsored by
726   networking4all.com - thanks!
727
728 Daniel Stenberg (10 Dec 2009)
729 - Siegfried Gyuricsko found out that the curl manual said --retry would retry
730   on FTP errors in the transient 5xx range. Transient FTP errors are in the
731   4xx range. The code itself only tried on 5xx errors that occured _at login_.
732   Now the retry code retries on all FTP transfer failures that ended with a
733   4xx response.
734
735   (http://curl.haxx.se/bug/view.cgi?id=2911279)
736
737 - Constantine Sapuntzakis figured out a case which would lead to libcurl
738   accessing alredy freed memory and thus crash when using HTTPS (with
739   OpenSSL), multi interface and the CURLOPT_DEBUGFUNCTION and a certain order
740   of cleaning things up. I fixed it.
741
742   (http://curl.haxx.se/bug/view.cgi?id=2905220)
743
744 Daniel Stenberg (7 Dec 2009)
745 - Martin Storsjo made libcurl use the Expect: 100-continue header for posts
746   with unknown size. Previously it was only used for posts with a known size
747   larger than 1024 bytes.
748
749 Daniel Stenberg (1 Dec 2009)
750 - If the Expect: 100-continue header has been set by the application through
751   curl_easy_setopt with CURLOPT_HTTPHEADER, the library should set
752   data->state.expect100header accordingly - the current code (in 7.19.7 at
753   least) doesn't handle this properly. Martin Storsjo provided the fix!
754
755 Yang Tse (28 Nov 2009)
756 - Added Diffie-Hellman parameters to several test harness certificate files in
757   PEM format. Required by several stunnel versions used by our test harness.
758
759 Daniel Stenberg (28 Nov 2009)
760 - Markus Koetter provided a polished and updated version of Chad Monroe's TFTP
761   rework patch that now integrates TFTP properly into libcurl so that it can
762   be used non-blocking with the multi interface and more. BLKSIZE also works.
763
764   The --tftp-blksize option was added to allow setting the TFTP BLKSIZE from
765   the command line.
766
767 Daniel Stenberg (26 Nov 2009)
768 - Extended and fixed the change I did on Dec 11 for the the progress
769   meter/callback during FTP command/response sequences. It turned out it was
770   really lame before and now the progress meter SHOULD get called at least
771   once per second.
772
773 Daniel Stenberg (23 Nov 2009)
774 - Bjorn Augustsson reported a bug which made curl not report any problems even
775   though it failed to write a very small download to disk (done in a single
776   fwrite call). It turned out to be because fwrite() returned success, but
777   there was insufficient error-checking for the fclose() call which tricked
778   curl to believe things were fine.
779
780 Yang Tse (23 Nov 2009)
781 - David Byron modified Makefile.dist vc8 and vc9 targets in order to allow
782   finer granularity control when generating src and lib makefiles.
783
784 Yang Tse (22 Nov 2009)
785 - I modified configure to force removal of the curlbuild.h file included in
786   distribution tarballs for use by non-configure systems. As intended, this
787   would get overwriten when doing in-tree builds. But VPATH builds would end
788   having two curlbuild.h files, one in the source tree and another in the
789   build tree. With the modification I introduced 5 Nov 2009 this could become
790   an issue when running libcurl's test suite.
791
792 Daniel Stenberg (20 Nov 2009)
793 - Constantine Sapuntzakis identified a write after close, as the sockets were
794   closed by libcurl before the SSL lib were shutdown and they may write to its
795   socket. Detected to at least happen with OpenSSL builds.
796
797 - Jad Chamcham pointed out a bug with connection re-use. If a connection had
798   CURLOPT_HTTPPROXYTUNNEL enabled over a proxy, a subsequent request using the
799   same proxy with the tunnel option disabled would still wrongly re-use that
800   previous connection and the outcome would only be badness.
801
802 Yang Tse (18 Nov 2009)
803 - I modified the memory tracking system to make it intolerant with zero sized
804   malloc(), calloc() and realloc() function calls.
805
806 Daniel Stenberg (17 Nov 2009)
807 - Constantine Sapuntzakis provided another fix for the DNS cache that could
808   end up with entries that wouldn't time-out:
809
810   1. Set up a first web server that redirects (307) to a http://server:port
811      that's down
812   2. Have curl connect to the first web server using curl multi
813
814   After the curl_easy_cleanup call, there will be curl dns entries hanging
815   around with in_use != 0.
816
817   (http://curl.haxx.se/bug/view.cgi?id=2891591)
818
819 - Marc Kleine-Budde fixed: curl saved the LDFLAGS set during configure into
820   its pkg-config file.  So -Wl stuff ended up in the .pc file, which is really
821   bad, and breaks if there are multiple -Wl in our LDFLAGS (which are in
822   PTXdist). bug #2893592 (http://curl.haxx.se/bug/view.cgi?id=2893592)
823
824 Kamil Dudka (15 Nov 2009)
825 - David Byron improved the configure script to use pkg-config to find OpenSSL
826   (and in particular the list of required libraries) even if a path is given
827   as argument to --with-ssl
828
829 Yang Tse (15 Nov 2009)
830 - I removed enable-thread / disable-thread configure option. These were only
831   placebo options. The library is always built as thread safe as possible on
832   every system.
833
834 Claes Jakobsson (14 Nov 2009)
835 - curl-config now accepts '--configure' to see what arguments was
836   passed to the configure script when building curl.
837
838 Daniel Stenberg (14 Nov 2009)
839 - Claes Jakobsson restored the configure functionality to detect NSS when
840   --with-nss is set but not "yes".
841
842   I think we can still improve that to check for pkg-config in that path etc,
843   but at least this patch brings back the same functionality we had before.
844
845 - Camille Moncelier added support for the file type SSL_FILETYPE_ENGINE for
846   the client certificate. It also disable the key name test as some engines
847   can select a private key/cert automatically (When there is only one key
848   and/or certificate on the hardware device used by the engine)
849
850 Yang Tse (14 Nov 2009)
851 - Constantine Sapuntzakis provided the fix that ensures that an SSL connection
852   won't be reused unless protection level for peer and host verification match.
853
854   I refactored how preprocessor symbol _THREAD_SAFE definition is done.
855
856 Kamil Dudka (12 Nov 2009)
857 - Kevin Baughman provided a fix preventing libcurl-NSS from crash on doubly
858   closed NSPR descriptor. The issue was hard to find, reported several times
859   before and always closed unresolved. More info at the RH bug:
860   https://bugzilla.redhat.com/534176
861
862 - libcurl-NSS now tries to reconnect with TLS disabled in case it detects
863   a broken TLS server. However it does not happen if SSL version is selected
864   manually. The approach was originally taken from PSM. Kaspar Brand helped me
865   to complete the patch. Original bug reports:
866   https://bugzilla.redhat.com/525496
867   https://bugzilla.redhat.com/527771
868
869 Yang Tse (12 Nov 2009)
870 - I modified configure script to make the getaddrinfo function check also
871   verify if the function is thread safe.
872
873 Yang Tse (11 Nov 2009)
874 - Marco Maggi reported that compilation failed when configured --with-gssapi
875   and GNU GSS installed due to a missing mutual exclusion of header files in
876   the Kerberos 5 code path. He also verified that my patch worked for him.
877
878 Daniel Stenberg (11 Nov 2009)
879 - Constantine Sapuntzakis posted bug #2891595
880   (http://curl.haxx.se/bug/view.cgi?id=2891595) which identified how an entry
881   in the DNS cache would linger too long if the request that added it was in
882   use that long. He also provided the patch that now makes libcurl capable of
883   still doing a request while the DNS hash entry may get timed out.
884
885 - Christian Schmitz noticed that the progress meter/callback was not properly
886   used during the FTP connection phase (after the actual TCP connect), while
887   it of course should be. I also made the speed check get called correctly so
888   that really slow servers will trigger that properly too.
889
890 Kamil Dudka (5 Nov 2009)
891 - Dropped misleading timeouts in libcurl-NSS and made sure the SSL socket works
892   in non-blocking mode.
893
894 Yang Tse (5 Nov 2009)
895 - I removed leading 'curl' path on the 'curlbuild.h' include statement in
896   curl.h, adjusting auto-makefiles include path, to enhance portability to
897   OS's without an orthogonal directory tree structure such as OS/400.
898
899 Daniel Stenberg (4 Nov 2009)
900 - I fixed several problems with the transfer progress meter. It showed the
901   wrong percentage for small files, most notable for <1000 bytes and could
902   easily end up showing more than 100% at the end. It also didn't show any
903   percentage, transfer size or estimated transfer times when transferring
904   less than 100 bytes.
905
906 Version 7.19.7 (4 November 2009)
907
908 Daniel Stenberg (2 Nov 2009)
909 - As reported independent by both Stan van de Burgt and Didier Brisebourg,
910   CURLINFO_SIZE_DOWNLOAD (the -w variable size_download) didn't work when
911   getting data from ldap!
912
913 Daniel Stenberg (31 Oct 2009)
914 - Gabriel Kuri reported a problem with CURLINFO_CONTENT_LENGTH_DOWNLOAD if the
915   download was 0 bytes, as libcurl would then return the size as unknown (-1)
916   and not 0. I wrote a fix and test case 566 to verify it.
917
918 Daniel Stenberg (30 Oct 2009)
919 - Liza Alenchery mentioned a problem with re-used SCP connection when a bad
920   auth is used, as it caused a crash. I failed to repeat the issue, but still
921   made a change that now forces the TCP connection used for a freed SCP
922   session to get closed and not be re-used.
923
924 - "Tom" posted a bug report that mentioned how libcurl did wrong when doing a
925   POST using a read callback, with Digest authentication and
926   "Transfer-Encoding: chunked" enforced.  I would then cause the first request
927   to be wrongly sent and then basically hang until the server closed the
928   connection. I fixed the problem and added test case 565 to verify it.
929
930 Daniel Stenberg (25 Oct 2009)
931 - Dima Barsky made the curl cookie parser accept cookies even with blank or
932   unparsable expiry dates and then treat them as session cookies - previously
933   libcurl would reject cookies with a date format it couldn't parse. Research
934   shows that the major browser treat such cookies as session cookies. I
935   modified test 8 and 31 to verify this.
936
937 Daniel Stenberg (21 Oct 2009)
938 - Attempt to use pkg-config for finding out libssh2 installation details
939   during configure.
940
941 - A patch in bug report #2883177 (http://curl.haxx.se/bug/view.cgi?id=2883177)
942   by Johan van Selst introduced the --crlfile option to curl, which makes curl
943   tell libcurl about a file with CRL (certificate revocation list) data to
944   read.
945
946 Daniel Stenberg (18 Oct 2009)
947 - Ray Dassen provided a patch in Debian's bug tracker (bug number #551461)
948   that now makes curl_getdate(3) actually handles RFC 822 formatted dates that
949   use the "single letter military timezones".
950   http://www.rfc-ref.org/RFC-TEXTS/822/chapter5.html has the details.
951
952 - Fixed memory leak in the SCP/SFTP code as it never freed the knownhosts
953   data!
954
955 - John Dennis filed bug report #2873666
956   (http://curl.haxx.se/bug/view.cgi?id=2873666) which identified a problem
957   which made libcurl loop infinitely when given incorrect credentials when
958   using HTTP GSS negotiate authentication. He also provided a small and simple
959   patch for it.
960
961 - Kevin Baughman found a double close() problem with libcurl-NSS, as when
962   libcurl called NSS to close the SSL "session" it also closed the actual
963   socket.
964
965 Yang Tse (17 Oct 2009)
966 - Bug report #2866724 indicated
967   (http://curl.haxx.se/bug/view.cgi?id=2866724) that curl on Windows failed
968   when writing files whose file names originally contained characters which
969   are not valid for file names on Windows. Dan Fandrich provided an initial
970   patch and another revised one to fix this issue.
971
972 Daniel Stenberg (1 Oct 2009)
973 - Tom Mueller correctly reported in bug report #2870221
974   (http://curl.haxx.se/bug/view.cgi?id=2870221) that libcurl returned an
975   incorrect return code from the internal trynextip() function which caused
976   him grief. This is a regression that was introduced in 7.19.1 and I find it
977   strange it hasn't hit us harder, but I won't persue into figuring out
978   exactly why.
979
980 - Constantine Sapuntzakis: The current implementation will always set
981   SO_SNDBUF to CURL_WRITE_SIZE even if the SO_SNDBUF starts out larger.  The
982   patch doesn't do a setsockopt if SO_SNDBUF is already greater than
983   CURL_WRITE_SIZE. This should help folks who have set up their computer with
984   large send buffers.
985
986 Daniel Stenberg (27 Sep 2009)
987 - I introduced a maximum limit for received HTTP headers. It is controlled by
988   the define CURL_MAX_HTTP_HEADER which is even exposed in the public header
989   file to allow for users to fairly easy rebuild libcurl with a modified
990   limit. The rationale for a fixed limit is that libcurl is realloc()ing a
991   buffer to be able to put a full header into it, so that it can call the
992   header callback with the entire header, but that also risk getting it into
993   trouble if a server by mistake or willingly sends a header that is more or
994   less without an end. The limit is set to 100K.
995
996 Daniel Stenberg (26 Sep 2009)
997 - John P. McCaskey posted a bug report that showed how libcurl did wrong when
998   saving received cookies with no given path, if the path in the request had a
999   query part. That is means a question mark (?) and characters on the right
1000   side of that. I wrote test case 1105 and fixed this problem.
1001
1002 Kamil Dudka (26 Sep 2009)
1003 - Implemented a protocol independent way to specify blocking direction, used by
1004   transfer.c for blocking. It is currently used only by SCP and SFTP protocols.
1005   This enhancement resolves an issue with 100% CPU usage during SFTP upload,
1006   reported by Vourhey.
1007
1008 Daniel Stenberg (25 Sep 2009)
1009 - Chris Mumford filed bug report #2861587
1010   (http://curl.haxx.se/bug/view.cgi?id=2861587) identifying that libcurl used
1011   the OpenSSL function X509_load_crl_file() wrongly and failed if it would
1012   load a CRL file with more than one certificate within. This is now fixed.
1013
1014 Daniel Stenberg (16 Sep 2009)
1015 - Sven Anders reported that we introduced a cert verfication flaw for OpenSSL-
1016   powered libcurl in 7.19.6. If there was a X509v3 Subject Alternative Name
1017   field in the certficate it had to match and so even if non-DNS and non-IP
1018   entry was present it caused the verification to fail.
1019
1020 Daniel Fandrich (15 Sep 2009)
1021 - Moved the libssh2 checks after the SSL library checks. This helps when
1022   statically linking since libssh2 needs the SSL library link flags to be
1023   set up already to satisfy its dependencies. This wouldn't be necessary if
1024   the libssh2 configure check was changed to use pkg-config since the
1025   --static flag would add the dependencies automatically.
1026
1027 Yang Tse (14 Sep 2009)
1028 - Revert Joshua Kwan's patch committed 11 Sep 2009.
1029
1030   Some systems poll function sets POLLHUP in revents without setting
1031   POLLIN, and sets POLLERR without setting POLLIN and POLLOUT. In some
1032   libcurl code execution paths this could trigger busy wait loops with
1033   high CPU usage until a timeout condition aborted the loop.
1034
1035   The reverted patch addressed the above issue for a very specific case,
1036   when awaiting c-ares to resolve. A libcurl-wide fix for Curl_poll now
1037   superceeds this one.
1038
1039 Guenter Knauf (11 Sep 2009)
1040 - Joshua Kwan provided a patch to pass POLLERR / POLLHUP back to c-ares.
1041   This fixes a loop problem with high CPU usage.
1042
1043 Daniel Stenberg (10 Sep 2009)
1044 - Claes Jakobsson fixed a problem with cookie expiry dates at exctly the epoch
1045   start second "Thu Jan 1 00:00:00 GMT 1970" as the date parser then returns 0
1046   which internally then is treated as a session cookie. That particular date
1047   is now made to get the value of 1.
1048
1049 Daniel Stenberg (2 Sep 2009)
1050 - Daniel Johnson found a flaw in the code converting sftp-errors to libcurl
1051   errors.
1052
1053 Daniel Stenberg (1 Sep 2009)
1054 - Peter Sylvester made a debug feature for Curl_resolv() that now will force
1055   libcurl to resolve 'localhost' whatever name you use in the URL *if* you set
1056   the --interface option to (exactly) "LocalHost". This will enable us to
1057   write tests for custom hosts names but still use a local host server.
1058
1059 - configure now tries to use pkg-config for a number of sub-dependencies even
1060   when cross-compiling. The key to success is then you properly setup
1061   PKG_CONFIG_PATH before invoking configure.
1062
1063   I also improved how NSS is detected by trying nss-config if pkg-config isn't
1064   present, and as a last resort just use the lib name and force the user to
1065   setup the LIBS/LDFLAGS/CFLAGS etc properly. The previous last resort would
1066   add a range of various libs that would almost never be quite correct.
1067
1068 Daniel Stenberg (31 Aug 2009)
1069 - When using the multi interface with FTP and you asked for NOBODY, you did no
1070   QUOTE commands and the request used the same path as the connection had
1071   already changed to, it would decide that no commands would be necessary for
1072   the "DO" action and that was not handled properly but libcurl would instead
1073   hang.
1074
1075 Kamil Dudka (28 Aug 2009)
1076 - Improved error message for not matching certificate subject name in
1077   libcurl-NSS. Originally reported at:
1078   https://bugzilla.redhat.com/show_bug.cgi?id=516056#c9
1079
1080 Patrick Monnerat (24 Aug 2009)
1081 - Introduced a SYST-based test to properly set-up name format when dealing
1082   with the OS/400 FTP server.
1083
1084 - Fixed an ftp_readresp() bug preventing detection of failing control socket
1085   and causing FTP client to loop forever.
1086
1087 Daniel Stenberg (24 Aug 2009)
1088 - Marc de Bruin pointed out that configure --with-gnutls=PATH didn't work
1089   properly and provided a fix. http://curl.haxx.se/bug/view.cgi?id=2843008
1090
1091 - Eric Wong introduced support for the new option -T. (dot) that makes curl
1092   read stdin in a non-blocking fashion. This also brings back -T- (minus) to
1093   the previous blocking behavior since it could break stuff for people at
1094   times.
1095
1096 Michal Marek (21 Aug 2009)
1097 - With CURLOPT_PROXY_TRANSFER_MODE, avoid sending invalid URLs like
1098   ftp://example.com;type=i if the user specified ftp://example.com without the
1099   slash.
1100
1101 Daniel Stenberg (21 Aug 2009)
1102 - Andre Guibert de Bruet pointed out a missing return code check for a
1103   strdup() that could lead to segfault if it returned NULL. I extended his
1104   suggest patch to now have Curl_retry_request() return a regular return code
1105   and better check that.
1106
1107 - Lots of good work by Krister Johansen, mostly related to pipelining:
1108
1109   Fix SIGSEGV on free'd easy_conn when pipe unexpectedly breaks
1110   Fix data corruption issue with re-connected transfers
1111   Fix use after free if we're completed but easy_conn not NULL
1112
1113 Kamil Dudka (13 Aug 2009)
1114 - Changed NSS code to not ignore the value of ssl.verifyhost and produce more
1115   verbose error messages. Originally reported at:
1116   https://bugzilla.redhat.com/show_bug.cgi?id=516056
1117
1118 Daniel Stenberg (12 Aug 2009)
1119 - Karl Moerder fixed the Makefile.vc* makefiles to include the new file
1120   nonblock.c so that they work fine again
1121
1122 - I expanded test 517 with a bunch of more dates that originate from the
1123   Chrome browser test suite. It turns out most of them get parsed the same
1124   way.
1125
1126 Version 7.19.6 (12 August 2009)
1127
1128 Daniel Stenberg (12 Aug 2009)
1129 - Carsten Lange reported a bug and provided a patch for TFTP upload and the
1130   sending of the TSIZE option. I don't like fixing bugs just hours before
1131   a release, but since it was broken and the patch fixes this for him I decided
1132   to get it in anyway.
1133
1134 Daniel Stenberg (11 Aug 2009)
1135 - Peter Sylvester made the HTTPS test server use specific certificates for
1136   each test, so that the test suite can now be used to actually test the
1137   verification of cert names etc. This made an error show up in the OpenSSL-
1138   specific code where it would attempt to match the CN field even if a
1139   subjectAltName exists that doesn't match. This is now fixed and verified
1140   in test 311.
1141
1142 - Benbuck Nason posted the bug report #2835196
1143   (http://curl.haxx.se/bug/view.cgi?id=2835196), fixing a few compiler
1144   warnings when mixing ints and bools.
1145
1146 Daniel Fandrich (10 Aug 2009)
1147 - Fixed a memory leak in the FTP code and an off-by-one heap buffer overflow.
1148
1149 Daniel Fandrich (9 Aug 2009)
1150 - Fixed some memory leaks in the command-line tool that caused most of the
1151   torture tests to fail.
1152
1153 Daniel Stenberg (2 Aug 2009)
1154 - Curt Bogmine reported a problem with SNI enabled on a particular server. We
1155   should introduce an option to disable SNI, but as we're in feature freeze
1156   now I've addressed the obvious bug here (pointed out by Peter Sylvester): we
1157   shouldn't try to enable SNI when SSLv2 or SSLv3 is explicitly selected.
1158   Code for OpenSSL and GnuTLS was fixed. NSS doesn't seem to have a particular
1159   option for SNI, or are we simply not using it?
1160
1161 Daniel Stenberg (1 Aug 2009)
1162 - Scott Cantor posted the bug report #2829955
1163   (http://curl.haxx.se/bug/view.cgi?id=2829955) mentioning the recent SSL cert
1164   verification flaw found and exploited by Moxie Marlinspike. The presentation
1165   he did at Black Hat is available here:
1166   https://www.blackhat.com/html/bh-usa-09/bh-usa-09-archives.html#Marlinspike
1167
1168   Apparently at least one CA allowed a subjectAltName or CN that contain a
1169   zero byte, and thus clients that assumed they would never have zero bytes
1170   were exploited to OK a certificate that didn't actually match the site. Like
1171   if the name in the cert was "example.com\0theatualsite.com", libcurl would
1172   happily verify that cert for example.com.
1173
1174   libcurl now better uses the length of the extracted name, not using the zero
1175   termination for getting the string length.
1176
1177   This fixing only made and needed in OpenSSL interfacing code.
1178
1179 - Tanguy Fautre pointed out that OpenSSL's function RAND_screen() (present
1180   only in some OpenSSL installs - like on Windows) isn't thread-safe and we
1181   agreed that moving it to the global_init() function is a decent way to deal
1182   with this situation.
1183
1184 - Alexander Beedie provided the patch for a noproxy problem: If I have set
1185   CURLOPT_NOPROXY to "*", or to a host that should not use a proxy, I actually
1186   could still end up using a proxy if a proxy environment variable was set.
1187
1188 Daniel Stenberg (27 Jul 2009)
1189 - All the quote options (CURLOPT_QUOTE, CURLOPT_POSTQUOTE and
1190   CURLOPT_PREQUOTE) now accept a preceeding asterisk before the command to
1191   send when using FTP, as a sign that libcurl shall simply ignore the response
1192   from the server instead of treating it as an error. Not treating a 400+ FTP
1193   response code as an error means that failed commands will not abort the
1194   chain of commands, nor will they cause the connection to get disconnected.
1195
1196 Daniel Stenberg (26 Jul 2009)
1197 - Johan van Selst posted bug report #2825989
1198   (http://curl.haxx.se/bug/view.cgi?id=2825989) pointing out that
1199   OpenSSL-powered libcurl didn't support the SHA-2 digest algorithm, and
1200   provided the solution too: to use OpenSSL_add_all_algorithms() in addition
1201   to the older SSLeay_* alternative. OpenSSL_add_all_algorithms was added in
1202   OpenSSL 0.9.5
1203
1204 Daniel Stenberg (23 Jul 2009)
1205 - Added CURLOPT_SSH_KNOWNHOSTS, CURLOPT_SSH_KEYFUNCTION, CURLOPT_SSH_KEYDATA.
1206   They introduce known_host support for SSH keys to libcurl. See docs for
1207   details. Note that this feature depends on a new enough libssh2 version, to
1208   be supported in libssh2 1.2 and later (or current git repo at this time).
1209
1210 Michal Marek (22 Jul 2009)
1211 - David Binderman found a memory and fd leak in lib/gtls.c:load_file()
1212   (https://bugzilla.novell.com/523919). When looking at the code, I found that
1213   also the ptr pointer can leak.
1214
1215 Kamil Dudka (20 Jul 2009)
1216 - Claes Jakobsson improved the support for client certificates handling in
1217   NSS-powered libcurl. Now the client certificates can be selected
1218   automatically by a NSS built-in hook. Additionally pre-login to all PKCS11
1219   slots is no more performed. It used to cause problems with HW tokens.
1220
1221 - Fixed reference counting for NSS client certificates. Now the PEM reader
1222   module should be always properly unloaded on Curl_nss_cleanup(). If the
1223   unload fails though, libcurl will try to reuse the already loaded instance.
1224
1225 Daniel Fandrich (15 Jul 2009)
1226 - Added nonblock.c to the non-automake makefiles (note that the dependencies
1227   in the Watcom makefiles aren't quite correct).
1228
1229 Michal Marek (15 Jul 2009)
1230 - Changed the description of CURLINFO_OS_ERRNO to make it clear that the
1231   errno is not reset on success.
1232
1233 Guenter Knauf (14 Jul 2009)
1234 - renamed generated config.h to curl_config.h to avoid any future clashes
1235   with config.h from other projects.
1236
1237 Daniel Stenberg (9 Jul 2009)
1238 - Eric Wong introduced curlx_nonblock() that the curl tool now (re-)uses for
1239   setting a file descriptor non-blocking. Used by the functionality Eric
1240   himself brough on June 15th.
1241
1242 Daniel Stenberg (8 Jul 2009)
1243 - Constantine Sapuntzakis posted bug report #2813123
1244   (http://curl.haxx.se/bug/view.cgi?id=2813123) and an a patch that fixes the
1245   problem:
1246
1247   Url A is accessed using auth. Url A redirects to Url B (on a different
1248   server0. Url B reuses a persistent connection. Url B has auth, even though
1249   it's on a different server.
1250
1251   Note: if Url B does not reuse a persistent connection, auth is not sent.
1252
1253   reason:
1254
1255   data->state.first_host is not initialized becuase Curl_http_connect is not
1256   called when a connection is reused.
1257
1258   Solution:
1259
1260   move initialization of data->state.first_host to Curl_http. No code before
1261   Curl_http uses data->state.first_host anyway.
1262
1263 Guenter Knauf (4 Jul 2009)
1264 - Markus Koetter provided a patch to avoid getnameinfo() usage which broke a
1265   couple of both IPv4 and IPv6 autobuilds.
1266
1267 Daniel Stenberg (29 Jun 2009)
1268 - Markus Koetter made CURLOPT_FTPPORT (and curl's -P/--ftpport) support a port
1269   range if given colon-separated after the host name/address part. Like
1270   "192.168.0.1:2000-10000"
1271
1272 - Modified the separators used for CURLOPT_CERTINFO in multi-part outputs. I
1273   don't know how they got wrong in the first place, but using this output
1274   format makes it possible to quite easily separate the string into an array
1275   of multiple items.
1276
1277 Daniel Fandrich (16 June 2009)
1278 - Added a few more compiler warning options for gcc.
1279
1280 Daniel Stenberg (16 Jun 2009)
1281 - Reuven Wachtfogel made curl -o - properly produce a binary output on windows
1282   (no newline translations). Use -B/--use-ascii if you rather get the ascii
1283   approach.
1284
1285 Michal Marek (16 Jun 2009)
1286 - When doing non-anonymous ftp via http proxies and the password is not
1287   provided in the url, add it there (squid needs this).
1288
1289 Daniel Stenberg (15 Jun 2009)
1290 - Eric Wong's patch:
1291
1292   This allows curl(1) to be used as a client-side tunnel for arbitrary stream
1293   protocols by abusing chunked transfer encoding in both the HTTP request and
1294   HTTP response.  This requires server support for sending a response while a
1295   request is still being read, of course.
1296
1297   If attempting to read from stdin returns EAGAIN, then we pause our sender.
1298   This leaves curl to attempt to read from the socket while reading from stdin
1299   (and thus sending) is paused.
1300
1301   This change was needed to allow successfully tunneling the git protocol over
1302   HTTP (--no-buffer is needed, as well).
1303
1304 Patrick Monnerat (15 Jun 2009)
1305 - Replaced use of standard C library rand()/srand() by our own pseudo-random
1306   number generator.
1307
1308 Yang Tse (11 Jun 2009)
1309 - I adapted testcurl script to allow building test harness programs when
1310   cross-compiling for a *-*-mingw* host.
1311
1312 Daniel Stenberg (10 Jun 2009)
1313 - Fabian Keil ran clang on the (lib)curl code, found a bunch of warnings and
1314   contributed a range of patches to fix them.
1315
1316 Yang Tse (10 Jun 2009)
1317 - I introduced configure script option --enable-curldebug which now allows
1318   the decoupled enabling or disabling of the curl debug memory tracking
1319   feature from the --enable-debug option which no longer controls this.
1320
1321   curl --version will list 'Debug' feature for debug enabled builds, and
1322   will list 'TrackMemory' feature for curl debug memory tracking capable
1323   builds. These features are independent and can be controlled when running
1324   the configure script. When --enable-debug is given both features will be
1325   enabled, unless some restriction prevents memory tracking from being used.
1326
1327   Internally, definition of preprocessor symbol DEBUGBUILD restricts code
1328   which is only compiled for debug enabled builds. And symbol CURLDEBUG is
1329   used to differentiate code which is _only_ used for memory tracking.
1330
1331 Yang Tse (9 Jun 2009)
1332 - Daniel Steinberg pointed out that Curl_FormInit() in formdata.c was not
1333   initializing the fread callback pointer and this triggered a compiler
1334   warning, also provided a friendly suggestion on how to fix it.
1335
1336 Daniel Stenberg (8 Jun 2009)
1337 - Claes Jakobsson provided a patch for libcurl-NSS that fixed a bad refcount
1338   issue with client certs that caused issues like segfaults.
1339   http://curl.haxx.se/mail/lib-2009-05/0316.html
1340
1341 - Triggered by bug report #2798852 and the patch in there, I fixed configure
1342   to detect gnutls build options with pkg-config only and not libgnutls-config
1343   anymore since GnuTLS has stopped distributing that tool. If an explicit path
1344   is given to configure, we will instead guess on how to link and use that
1345   lib. I did not use the patch from the bug report.
1346
1347 Yang Tse (8 Jun 2009)
1348 - Igor Novoseltsev adjusted Makefile.vxworks to get sources and headers
1349   included from Makefile.inc, and provided docs\INSTALL VxWorks section.
1350
1351 - I removed buildconf.bat from release and daily snapshot archives. This
1352   file is only for CVS tree checkout builds.
1353
1354 Daniel Stenberg (8 Jun 2009)
1355 - Eric Wong fixed --no-buffer to actually switch off output buffering. Been
1356   broken since 7.19.0
1357
1358 Bill Hoffman (6 Jun 2009)
1359 - Added some cmake docs and fixed socklen_t in the build.
1360
1361 Yang Tse (5 Jun 2009)
1362 - John E. Malmberg provided VMS specific patch: "This fixes an existing bug
1363   in urlglob.c where it was not converting the Curl Unix exit code to a VMS
1364   DCL compatible exit code.  This fix required the enhancement described next.
1365   This also adds an enhancement to main.c so that when curl is run under a
1366   Unix shell like Bash on VMS, it will return the standard Unix exit codes
1367   and messages." And another patch for docs/examples.
1368
1369   I introduced os-specific.c and os-specific.h for use in curl tool code
1370   and adjusted John E. Malmberg's patch placement to use these new files
1371   as an effort to prevent main.c from growing ad infinitum. Code already
1372   existing in main.c which is OS specific should be moved into these files.
1373
1374 Daniel Stenberg (4 June 2009)
1375 - Setting the Content-Length: header from your app when you do a POST or PUT
1376   is almost always a VERY BAD IDEA. Yet there are still apps out there doing
1377   this, and now recently it triggered a bug/side-effect in libcurl as when
1378   libcurl sends a POST or PUT with NTLM, it sends an empty post first when it
1379   knows it will just get a 401/407 back. If the app then replaced the
1380   Content-Length header, it caused the server to wait for input that libcurl
1381   wouldn't send. Aaron Oneal reported this problem in bug report #2799008
1382   (http://curl.haxx.se/bug/view.cgi?id=2799008) and helped us verify the fix.
1383
1384 Yang Tse (4 Jun 2009)
1385 - Igor Novoseltsev provided patches and information, that after some
1386   adjustments to better fit curl's way of doing things, have resulted
1387   in the posibility of building libcurl for VxWorks.
1388
1389 Daniel Fandrich (2 June 2009)
1390 - Checked in a Google Android make file. To use it, you must first
1391   create a config.h file by running configure in the Android environment,
1392   which doesn't seem to be easy to do. If no easy way can be found, a
1393   static config-android.h may need to be created and checked in to the
1394   libcurl source tree.
1395
1396 Daniel Stenberg (1 June 2009)
1397 - Claes Jakobsson fixed the configure script to better find and use NSS
1398   without pkg-config.
1399
1400 Yang Tse (1 Jun 2009)
1401 - John E. Malmberg provided a VMS specific clean-up for curl.h, and pointed
1402   out that the configure script was failing to detect the timeval struct on
1403   VMS when building with _XOPEN_SOURCE_EXTENDED undefined due to definition
1404   taking place in socket.h instead of time.h.  I have adjusted configure
1405   script to also include this header when checking struct timeval.
1406
1407 Daniel Stenberg (27 May 2009)
1408 - Frank McGeough provided a small OpenSSL #include fix to make libcurl compile
1409   fine with Nokia 5th edition 1.0 SDK for Symbian.
1410
1411 - Andre Guibert de Bruet found a call to a OpenSSL function that didn't check
1412   for a failure properly.
1413
1414 - Mike Crowe pointed out that setting CURLOPT_USERPWD to NULL used to clear
1415   the auth credentials back in 7.19.0 and earlier while now you have to set ""
1416   to get the same effect. His patch brings back the ability to use NULL.
1417
1418 - Claes Jakobsson fixed libcurl-NSS to build fine even without the
1419   PK11_CreateGenericObject() function.
1420
1421 Daniel Stenberg (25 May 2009)
1422 - bug report #2796358 (http://curl.haxx.se/bug/view.cgi?id=2796358) pointed
1423   out that the cookie parser would leak memory when it parses cookies that are
1424   received with domain, path etc set multiple times in the same header. While
1425   such a cookie is questionable, they occur in the wild and libcurl no longer
1426   leaks memory for them. I added such a header to test case 8.
1427
1428 Daniel Fandrich (22 May 2009)
1429 - Removed some obsolete digest code that caused a valgrind error in test 551.
1430
1431 Daniel Fandrich (20 May 2009)
1432 - Added "non-existing host" test keywords to make it easy to skip those
1433   tests on machines that have broken DNS configurations (such as
1434   those configured to use OpenDNS).
1435
1436 Daniel Stenberg (19 May 2009)
1437 - Kamil Dudka brought the patch from the Redhat bug entry
1438   https://bugzilla.redhat.com/show_bug.cgi?id=427966 which was libcurl closing
1439   a bad file descriptor when closing down the FTP data connection.  Caolan
1440   McNamara seems to be the original author of it.
1441
1442 Version 7.19.5 (18 May 2009)
1443
1444 Daniel Stenberg (17 May 2009)
1445 - James Bursa posted a patch to the mailing list that fixed a problem with
1446   no_proxy which made it not skip the proxy if the URL entered contained a
1447   user name. I added test case 1101 to verify.
1448
1449 Daniel Stenberg (11 May 2009)
1450 - Balint Szilakszi reported a memory leak when libcurl did gzip decompression
1451   of streams that had some parts (legitimately) missing. We now provide and use
1452   a proper cleanup function for the content encoding submodule.
1453   http://curl.haxx.se/mail/lib-2009-05/0092.html
1454
1455 - Kamil Dudka provided a fix for libcurl-NSS reported by Michael Cronenworth
1456   at https://bugzilla.redhat.com/show_bug.cgi?id=453612#c12
1457
1458   If an incorrect password is given while loading a private key, libcurl ends
1459   up in an infinite loop consuming memory. The bug is critical.
1460
1461 - I fixed the problem with doing NTLM, POST and then following a 302 redirect,
1462   as reported by Ebenezer Ikonne (on curl-users) and Laurent Rabret (on
1463   curl-library). The transfer was mistakenly marked to get more data to send
1464   but since it didn't actually have that, it just hung there...
1465
1466 Daniel Stenberg (10 May 2009)
1467 - Andre Guibert de Bruet correctly pointed out an over-alloc with one wasted
1468   byte in the digest code.
1469
1470 Yang Tse (9 May 2009)
1471 - Removed DOS and TPF package's subdirectory Makefile.am, it was only used
1472   to include some files in the distribution tarball serving no other purpose.
1473   Files from the DOS and TPF subdirectories are now included in the EXTRA_DIST
1474   of the Makefile in the parent subdirectory.
1475
1476 Yang Tse (8 May 2009)
1477 - Changed host name literal in several tests to one under the haxx.se domain.
1478
1479 - Renamed vc6 workspace and project files to avoid filename clash when used
1480   for conversion to later VS versions.
1481
1482 Daniel Stenberg (8 May 2009)
1483 - Constantine Sapuntzakis fixed bug report #2784055
1484   (http://curl.haxx.se/bug/view.cgi?id=2784055) identifying a problem to
1485   connect to SOCKS proxies when using the multi interface. It turned out to
1486   almost not work at all previously. We need to wait for the TCP connect to
1487   be properly verified before doing the SOCKS magic.
1488
1489   There's still a flaw in the FTP code for this.
1490
1491 Daniel Stenberg (7 May 2009)
1492 - Made the SO_SNDBUF setting for the data connection socket for ftp uploads as
1493   well. See change 28 Apr 2009.
1494
1495 Yang Tse (7 May 2009)
1496 - Fixed an issue affecting FTP transfers, introduced with the transfer.c
1497   patch committed May 4.
1498
1499 Daniel Stenberg (7 May 2009)
1500 - Man page *roff problems fixed thanks to input from Colin Watson. Problems
1501   reported in the Debian package.
1502
1503 - Vijay G filed bug report #2723236
1504   (http://curl.haxx.se/bug/view.cgi?id=2723236) identifying a problem with
1505   libcurl's TFTP code and its lack of dealing with the OACK packet.
1506
1507 Yang Tse (5 May 2009)
1508 - Fixed the --ftp-port address of test #251 to the CLIENTIP address, and
1509   reverted the change affecting test suite harness committed 4 May.
1510
1511 Daniel Stenberg (5 May 2009)
1512 - Inspired by Michael Smith's session id fix for OpenSSL, I did the
1513   corresponding fix in the GnuTLS code: make sure to store the new session id
1514   in case the previous re-used one is rejected.
1515
1516 Daniel Stenberg (4 May 2009)
1517 - Michael Smith posted bug report #2786255
1518   (http://curl.haxx.se/bug/view.cgi?id=2786255) with a patch, identifying how
1519   libcurl did not deal with SSL session ids properly if the server rejected a
1520   re-use of one. Starting now, it will forget the rejected one and remember
1521   the new. This change was for OpenSSL only, it is likely that other SSL lib
1522   code needs similar fixes.
1523
1524 Yang Tse (4 May 2009)
1525 - Applied David McCreedy's "transfer.c fixes for CURL_DO_LINEEND_CONV and
1526   non-ASCII platform HTTP requests" patch addressing two HTTP PUT problems:
1527   1) On non-ASCII platforms not all of the protocol portions of the PUT are
1528   being translated to ASCII.  2) On all platforms the line endings of part of
1529   the protocol portions are mangled from CRLF to CRCRLF if data->set.crlf or
1530   data->set.prefer_ascii are set (depending on CURL_DO_LINEEND_CONV).
1531
1532 - Applied David McCreedy's patch to fix test suite harness to allow test FTP
1533   server and client on different machines, providing FTP client address when
1534   running the FTP test server.
1535
1536 Daniel Fandrich (3 May 2009)
1537 - Added and disabled test case 563 which shows KNOWN_BUGS #59.  The bug
1538   report failed to mention that a proxy must be used to reproduce it.
1539
1540 Yang Tse (2 May 2009)
1541 - Use a build-time configured curl_socklen_t data type instead of socklen_t.
1542
1543 Yang Tse (1 May 2009)
1544 - Applied David McCreedy's patches "TPF-platform specific changes to various
1545   files" and "http.c fix to Curl_proxyCONNECT for non-ASCII platforms", the
1546   former with minor edits.
1547
1548 Daniel Stenberg (30 Apr 2009)
1549 - I was going to fix issue #59 in KNOWN_BUGS
1550
1551   If the CURLOPT_PORT option is used on an FTP URL like
1552   "ftp://example.com/file;type=A" the ";type=A" is stripped off.
1553
1554   I added test case 562 to verify, only to find out that I couldn't repeat
1555   this bug so I hereby consider it not a bug anymore!
1556
1557 Daniel Stenberg (29 Apr 2009)
1558 - Based on bug report #2723219 (http://curl.haxx.se/bug/view.cgi?id=2723219)
1559   I've now made TFTP "connections" not being kept for re-use within libcurl.
1560   TFTP is UDP-based so the benefit was really low (if even existing) to begin
1561   with so instead of tracking down to fix this problem we instead removed the
1562   re-use. I also enabled test case 1099 that I wrote a few days ago to verify
1563   that this change fixes the reported problem.
1564
1565 Daniel Stenberg (28 Apr 2009)
1566 - Constantine Sapuntzakis filed bug report #2783090
1567   (http://curl.haxx.se/bug/view.cgi?id=2783090) pointing out that on windows
1568   we need to grow the SO_SNDBUF buffer somewhat to get really good upload
1569   speeds. http://support.microsoft.com/kb/823764 has the details. Friends
1570   confirmed that simply adding 32 to CURL_MAX_WRITE_SIZE is enough.
1571
1572 - Bug report #2709004 (http://curl.haxx.se/bug/view.cgi?id=2709004) by Tim
1573   Chen pointed out how curl couldn't upload with resume when reading from a
1574   pipe.
1575
1576   This ended up with the introduction of a new return code for the
1577   CURLOPT_SEEKFUNCTION callback that basically says that the seek failed but
1578   that libcurl may try to resolve the situation anyway. In our case this means
1579   libcurl will attempt to instead read that much data from the stream instead
1580   of seeking and that way curl can now upload with resume when data is read
1581   from a stream!
1582
1583 Daniel Stenberg (26 Apr 2009)
1584 - Bug report #2779733 (http://curl.haxx.se/bug/view.cgi?id=2779733) by Sven
1585   Wegener pointed out that CURLINFO_APPCONNECT_TIME didn't work with the multi
1586   interface and provided a patch that fixed the problem!
1587
1588 Daniel Stenberg (24 Apr 2009)
1589 - Kamil Dudka fixed another NSS-related leak when client certs were used.
1590
1591 - Bug report #2779245 (http://curl.haxx.se/bug/view.cgi?id=2779245) by Rainer
1592   Koenig pointed out that the man page didn't tell that the *_proxy
1593   environment variables can be specified lower case or UPPER CASE and the
1594   lower case takes precedence,
1595
1596 Daniel Fandrich (21 Apr 2009)
1597 - Added new libcurl source files to Amiga, RiscOS and VC6 build files.
1598
1599 Yang Tse (21 Apr 2009)
1600 - Moved potential inclusion of system's malloc.h and memory.h header files to
1601   setup_once.h.  Inclusion of each header file is based on the definition of
1602   NEED_MALLOC_H and NEED_MEMORY_H respectively.
1603
1604   Renamed libcurl's memory.h to curl_memory.h
1605
1606 Daniel Stenberg (20 Apr 2009)
1607 - Leanic Lefever reported a crash and did some detailed research on why and
1608   how it occurs (http://curl.haxx.se/mail/lib-2009-04/0289.html). The
1609   conclusion was that if an error is detected and Curl_done() is called for
1610   the connection, ftp_done() could at times return another error code that
1611   then would take precedence and that new code confused existing logic that
1612   works for the first error code (CURLE_SEND_ERROR) only.
1613
1614 - Gisle Vanem noticed that --libtool would produce bogus strings at times for
1615   OBJECTPOINT options. Now we've introduced a new function - my_setopt_str -
1616   within the app for setting plain string options to avoid the risk of this
1617   mistake happening.
1618
1619 Daniel Stenberg (17 Apr 2009)
1620 - Pramod Sharma reported and tracked down a bug when doing FTP over a HTTP
1621   proxy. libcurl would then wrongly close the connection after each
1622   request. In his case it had the weird side-effect that it killed NTLM auth
1623   for the proxy causing an inifinite loop!
1624
1625   I added test case 1098 to verify this fix. The test case does however not
1626   properly verify that the transfers are done persistently - as I couldn't
1627   think of a clever way to achieve it right now - but you need to read the
1628   stderr output after a test run to see that it truly did the right thing.
1629
1630 Daniel Stenberg (13 Apr 2009)
1631 - bug report #2727981 (http://curl.haxx.se/bug/view.cgi?id=2727981) by Martin
1632   Storsjö pointed out how setting CURLOPT_NOBODY to 0 could be downright
1633   confusing as it set the method to either GET or HEAD. The example he showed
1634   looked like:
1635
1636    curl_easy_setopt(curl, CURLOPT_PUT, 1);
1637    curl_easy_setopt(curl, CURLOPT_NOBODY, 0);
1638
1639   The new way doesn't alter the method until the request is about to start. If
1640   CURLOPT_NOBODY is then 1 the HTTP request will be HEAD. If CURLOPT_NOBODY is
1641   0 and the request happens to have been set to HEAD, it will then instead be
1642   set to GET. I believe this will be less surprising to users, and hopefully
1643   not hit any existing users badly.
1644
1645 - Toshio Kuratomi reported a memory leak problem with libcurl+NSS that turned
1646   out to be leaking cacerts. Kamil Dudka helped me complete the fix. The issue
1647   is found in Redhat's bug tracker:
1648   https://bugzilla.redhat.com/show_bug.cgi?id=453612
1649
1650   There are still memory leaks present, but they seem to have other reasons.
1651
1652 Daniel Fandrich (11 Apr 2009)
1653 - Added new libcurl source files to Symbian OS build files.
1654 - Improved Symbian support for SSL.
1655
1656 Yang Tse (10 Apr 2009)
1657 - Daniel Johnson improved the MacOSX-Framework shell script to now perform all
1658   the steps required to build a Mac OS X four way fat ppc/i386/ppc64/x86_64
1659   libcurl.framework.  Four way fat framework requires OS X 10.5 SDK or later.
1660
1661 Yang Tse (8 Apr 2009)
1662 - Removed Sun compilers preprocessor block from curlbuild.h.dist, this also
1663   removes it from the curlbuild.h file originally distributed by the cURL
1664   project as this file is intended for systems not capable of running the
1665   configure script.  For those who have been building curl out of the source
1666   code curl distribution tarball provided by curl.haxx.se the change implies
1667   nothing.  Previous change in this area committed 2 Apr becomes irrelevant.
1668
1669 Daniel Stenberg (6 Apr 2009)
1670 - I clarified in the docs that CURLOPT_SEEKFUNCTION should return 0 on success
1671   and 1 on fatal errors. Previously it only mentioned non-zero on fatal
1672   errors. This is a slight change in meaning, but it follows what we've done
1673   elsewhere before and it opens up for LOTS of more useful return codes
1674   whenever we can think of them...
1675
1676 Yang Tse (2 Apr 2009)
1677 - Fix curl_off_t definition for builds done using Sun compilers and a
1678   non-configured libcurl. In this case curl_off_t data type was gated
1679   to the off_t data type which depends on the _FILE_OFFSET_BITS. This
1680   configuration is exactly the unwanted configuration for our curl_off_t
1681   data type which must not depend on such setting. This breaks ABI for
1682   libcurl libraries built with Sun compilers which were built without
1683   having run the configure script with _FILE_OFFSET_BITS different than
1684   64 and using the ILP32 data model.
1685
1686 Daniel Stenberg (1 Apr 2009)
1687 - Andre Guibert de Bruet fixed a NULL pointer use in an infof() call if a
1688   strdup() call failed.
1689
1690 Daniel Fandrich (31 Mar 2009)
1691 - Properly return an error code in curl_easy_recv (reported by Jim Freeman).
1692
1693 Daniel Stenberg (18 Mar 2009)
1694 - Kamil Dudka brought a patch that enables 6 additional crypto algorithms when
1695   NSS is used. These ciphers were added in NSS 3.4 and require to be enabled
1696   explicitly.
1697
1698 Daniel Stenberg (13 Mar 2009)
1699 - Use libssh2_version() to present the libssh2 version in case the libssh2
1700   library is found to support it.
1701
1702 Yang Tse (12 Mar 2009)
1703 - Added missing Curl_read() return code checking in TELNET transfers.
1704
1705 - Pierre Brico found and fixed TELNET transfers not being aborted upon
1706   a write callback failure.
1707
1708 Daniel Stenberg (11 Mar 2009)
1709 - Kamil Dudka made the curl tool properly call curl_global_init() before any
1710   other libcurl function.
1711
1712 Yang Tse (11 Mar 2009)
1713 - Added missing TELNET timeout support for Windows builds. This issue was
1714   reported by Pierre Brico.
1715
1716 Daniel Stenberg (9 Mar 2009)
1717 - Frank Hempel found out a bug and provided the fix:
1718
1719   curl_easy_duphandle did not necessarily duplicate the CURLOPT_COOKIEFILE
1720   option. It only enabled the cookie engine in the destination handle if
1721   data->cookies is not NULL (where data is the source handle). In case of a
1722   newly initialized handle which just had the cookie support enabled by a
1723   curl_easy_setopt(handle, CURL_COOKIEFILE, "")-call, handle->cookies was
1724   still NULL because the setopt-call only appends the value to
1725   data->change.cookielist, hence duplicating this handle would not have the
1726   cookie engine switched on.
1727
1728   We also concluded that the slist-functionality would be suitable for being
1729   put in its own module rather than simply hanging out in lib/sendf.c so I
1730   created lib/slist.[ch] for them.
1731
1732 - Andreas Farber made the 'buildconf' script check for the presence of m4
1733   scripts to make it detect a bad checkout earlier. People with older
1734   checkouts who don't do cvs update with the -d option won't get the new dirs
1735   and then will get funny outputs that can be a bit hard to understand and
1736   fix.
1737
1738 Daniel Stenberg (8 Mar 2009)
1739 - Andre Guibert de Bruet found and fixed a code segment in ssluse.c where the
1740   allocation of the memory BIO was not being properly checked.
1741
1742 - Andre Guibert de Bruet fixed the gnutls-using code: There are a few places
1743   in the gnutls code where we were checking for negative values for errors,
1744   when the man pages state that GNUTLS_E_SUCCESS is returned on success and
1745   other values indicate error conditions.
1746
1747 - Bill Egert pointed out (http://curl.haxx.se/bug/view.cgi?id=2671602) that
1748   curl didn't use sprintf() in a way that is documented to work in POSIX but
1749   since we use our own printf() code (from libcurl) that shouldn't be a
1750   problem. Nonetheless I modified the code to not rely on such particular
1751   features and to not cause further raised eyebrowse with no good reason.
1752
1753 Daniel Fandrich (5 Mar 2009)
1754 - Expanded the security section of the libcurl-tutorial man page to cover
1755   more issues for authors to consider when writing robust libcurl-using
1756   applications.
1757
1758 Yang Tse (5 Mar 2009)
1759 - Fixed NTLM authentication memory leak on SSPI enabled Windows builds. This
1760   issue was noticed by Chris Deidun.
1761
1762 Daniel Fandrich (4 Mar 2009)
1763 - Fixed a problem with m4 quoting in the OpenSSL configure check reported
1764   by Daniel Johnson.
1765
1766 Daniel Stenberg (3 Mar 2009)
1767 - David James brought a patch that make libcurl close (all) dead connections
1768   whenever you attempt to open a new connection.
1769
1770   1. After cleaning up a dead connection, "continue" instead of
1771      returning FALSE. This ensures that we clean up all dead connections,
1772      rather than just cleaning up the first dead connection.
1773   2. Move up the cleanup for dead connections so that it occurs for
1774      all connections, rather than just the connections which have the same
1775      preferences as our current new connection.
1776
1777 Version 7.19.4 (3 March 2009)
1778
1779 Daniel Stenberg (3 Mar 2009)
1780 - David Kierznowski notified us about a security flaw
1781   (http://curl.haxx.se/docs/adv_20090303.html also known as CVE-2009-0037) in
1782   which previous libcurl versions (by design) can be tricked to access an
1783   arbitrary local/different file instead of a remote one when
1784   CURLOPT_FOLLOWLOCATION is enabled. This flaw is now fixed in this release
1785   together this the addition of two new setopt options for controlling this
1786   new behavior:
1787
1788   o CURLOPT_REDIR_PROTOCOLS controls what protocols libcurl is allowed to
1789   follow to when CURLOPT_FOLLOWLOCATION is enabled. By default, this option
1790   excludes the FILE and SCP protocols and thus you nee to explicitly allow
1791   them in your app if you really want that behavior.
1792
1793   o CURLOPT_PROTOCOLS controls what protocol(s) libcurl is allowed to fetch
1794   using the primary URL option. This is useful if you want to allow a user or
1795   other outsiders control what URL to pass to libcurl and yet not allow all
1796   protocols libcurl may have been built to support.
1797
1798 Daniel Stenberg (27 Feb 2009)
1799 - Senthil Raja Velu reported a problem when CURLOPT_INTERFACE and
1800   CURLOPT_LOCALPORT were used together (the local port bind failed), and
1801   Markus Koetter provided the fix!
1802
1803 Daniel Stenberg (25 Feb 2009)
1804 - As Daniel Fandrich figured out, we must do the GnuTLS initing in the
1805   curl_global_init() function to properly maintain the performing functions
1806   thread-safe. We've previously (28 April 2007) moved the init to a later time
1807   just to avoid it to fail very early when libgcrypt dislikes the situation,
1808   but that move was bad and the fix should rather be in libgcrypt or
1809   elsewhere.
1810
1811 Daniel Stenberg (24 Feb 2009)
1812 - Brian J. Murrell found out that Negotiate proxy authentication didn't work.
1813   It happened because the code used the struct for server-based auth all the
1814   time for both proxy and server auth which of course was wrong.
1815
1816 Daniel Stenberg (23 Feb 2009)
1817 - After a bug reported by James Cheng I've made curl_easy_getinfo() for
1818   CURLINFO_CONTENT_LENGTH_DOWNLOAD and CURLINFO_CONTENT_LENGTH_UPLOAD return
1819   -1 if the sizes aren't know. Previously these returned 0, make it impossible
1820   to detect the difference between actually zero and unknown.
1821
1822 Yang Tse (23 Feb 2009)
1823 - Daniel Johnson provided a shell script that will perform all the steps needed
1824   to build a Mac OS X fat ppc/i386 or ppc64/x86_64 libcurl.framework
1825
1826 Daniel Stenberg (23 Feb 2009)
1827 - I renamed everything in the windows builds files that used the name 'curllib'
1828   to the proper 'libcurl' as clearly this caused confusion.
1829
1830 Yang Tse (20 Feb 2009)
1831 - Do not halt compilation when using VS2008 to build a Windows 2000 target.
1832
1833 Daniel Stenberg (20 Feb 2009)
1834 - Linus Nielsen Feltzing reported and helped me repeat and fix a problem with
1835   FTP with the multi interface: when a transfer fails, like when aborted by a
1836   write callback, the control connection was wrongly closed and thus not
1837   re-used properly.
1838
1839   This change is also an attempt to cleanup the code somewhat in this area, as
1840   now the FTP code attempts to keep (better) track on pending responses
1841   necessary to get read in ftp_done().
1842
1843 Daniel Stenberg (19 Feb 2009)
1844 - Patrik Thunstrom reported a problem and helped me repeat it. It turned out
1845   libcurl did a superfluous 1000ms wait when doing SFTP downloads!
1846
1847   We read data with libssh2 while doing the "DO" operation for SFTP and then
1848   when we were about to start getting data for the actual file part, the
1849   "TRANSFER" part, we waited for socket action (in 1000ms) before doing a
1850   libssh2-read. But in this case libssh2 had already read and buffered the
1851   data so we ended up always just waiting 1000ms before we get working on the
1852   data!
1853
1854 Patrick Monnerat (18 Feb 2009)
1855 - FTP downloads (i.e.: RETR) ending with code 550 now return error
1856   CURLE_REMOTE_FILE_NOT_FOUND instead of CURLE_FTP_COULDNT_RETR_FILE.
1857
1858 Daniel Stenberg (17 Feb 2009)
1859 - Kamil Dudka made NSS-powered builds compile and run again!
1860
1861 - A second follow-up change by Andre Guibert de Bruet to fix a related memory
1862   leak like that fixed on the 14th. When zlib returns failure, we need to
1863   cleanup properly before returning error.
1864
1865 - CURLOPT_FTP_CREATE_MISSING_DIRS can now be set to 2 in addition to 1 for
1866   plain FTP connections, and it will then allow MKD to fail once and retry the
1867   CWD afterwards. This is especially useful if you're doing many simultanoes
1868   connections against the same server and they all have this option enabled,
1869   as then CWD may first fail but then another connection does MKD before this
1870   connection and thus MKD fails but trying CWD works! The numbers can
1871   (should?) now be set with the convenience enums now called
1872   CURLFTP_CREATE_DIR and CURLFTP_CREATE_DIR_RETRY.
1873
1874   Tests has proven that if you're making an application that uploads a set of
1875   files to an ftp server, you will get a noticable gain in speed if you're
1876   using multiple connections and this option will be then be very useful.
1877
1878 Daniel Stenberg (14 Feb 2009)
1879 - Andre Guibert de Bruet found and fixed a memory leak in the content encoding
1880   code, which could happen on libz errors.
1881
1882 Daniel Fandrich (12 Feb 2009)
1883 - Added support for Digest and NTLM authentication using GnuTLS.
1884
1885 Daniel Stenberg (11 Feb 2009)
1886 - CURLINFO_CONDITION_UNMET was added to allow an application to get to know if
1887   the condition in the previous request was unmet. This is typically a time
1888   condition set with CURLOPT_TIMECONDITION and was previously not possible to
1889   reliably figure out. From bug report #2565128
1890   (http://curl.haxx.se/bug/view.cgi?id=2565128) filed by Jocelyn Jaubert.
1891
1892 Daniel Fandrich (4 Feb 2009)
1893 - Don't add the standard /usr/lib or /usr/include paths to LDFLAGS and CPPFLAGS
1894   (respectively) when --with-ssl=/usr is used (patch based on FreeBSD).
1895
1896 - Added an explicit buffer limit check in msdosify() (patch based on FreeBSD).
1897   This couldn't ever overflow in curl, but might if the code were used
1898   elsewhere or under different conditions.
1899
1900 Daniel Stenberg (3 Feb 2009)
1901 - Hidemoto Nakada provided a small fix that makes it possible to get the
1902   CURLINFO_CONTENT_LENGTH_DOWNLOAD size from file:// "transfers" with
1903   CURLOPT_NOBODY set true.
1904
1905 Daniel Stenberg (2 Feb 2009)
1906 - Patrick Scott found a rather large memory leak when using the multi
1907   interface and setting CURLMOPT_MAXCONNECTS to something less than the number
1908   of handles you add to the multi handle. All the connections that didn't fit
1909   in the cache would not be properly disconnected nor freed!
1910
1911 - Craig A West brought us: libcurl now defaults to do CONNECT with HTTP
1912   version 1.1 instead of 1.0 like before. This change also introduces the new
1913   proxy type for libcurl called 'CURLPROXY_HTTP_1_0' that then allows apps to
1914   switch (back) to CONNECT 1.0 requests. The curl tool also got a --proxy1.0
1915   option that works exactly like --proxy but sets CURLPROXY_HTTP_1_0.
1916
1917   I updated all test cases cases that use CONNECT and I tried to do some using
1918   --proxy1.0 and some updated to do CONNECT 1.1 to get both versions run.
1919
1920 Daniel Stenberg (31 Jan 2009)
1921 - When building with c-ares 1.6.1 (not yet released) or later and IPv6 support
1922   enabled, we can now take advantage of its brand new AF_UNSPEC support in
1923   ares_gethostbyname(). This makes test case 241 finally run fine for me with
1924   this setup since it now parses the "::1 ip6-localhost" line fine in my
1925   /etc/hosts file!
1926
1927 Daniel Stenberg (30 Jan 2009)
1928 - Scott Cantor filed bug report #2550061
1929   (http://curl.haxx.se/bug/view.cgi?id=2550061) mentioning that I failed to
1930   properly make sure that the VC9 makefiles got included in the latest
1931   release. I've now fixed the release script and verified it so next release
1932   will hopefully include them properly!
1933
1934 Daniel Fandrich (30 Jan 2009)
1935 - Fixed --disable-proxy for FTP and SOCKS. Thanks to Daniel Egger for
1936   reporting.
1937
1938 Yang Tse (29 Jan 2009)
1939 - Introduced curl_sspi.c and curl_sspi.h for the implementation of functions
1940   Curl_sspi_global_init() and Curl_sspi_global_cleanup() which previously were
1941   named Curl_ntlm_global_init() and Curl_ntlm_global_cleanup() in http_ntlm.c
1942   Also adjusted socks_sspi.c to remove the link-time dependency on the Windows
1943   SSPI library using it now in the same way as it was done in http_ntlm.c.
1944
1945 Daniel Stenberg (28 Jan 2009)
1946 - Markus Moeller introduced two new options to libcurl:
1947   CURLOPT_SOCKS5_GSSAPI_SERVICE and CURLOPT_SOCKS5_GSSAPI_NEC to allow libcurl
1948   to do GSS-style authentication with SOCKS5 proxies. The curl tool got the
1949   options called --socks5-gssapi-service and --socks5-gssapi-nec to enable
1950   these.
1951
1952 Daniel Stenberg (26 Jan 2009)
1953 - Chad Monroe provided the new CURLOPT_TFTP_BLKSIZE option that allows an app
1954   to set desired block size to use for TFTP transfers instead of the default
1955   512 bytes.
1956
1957 - The "-no_ticket" option was introduced in Openssl0.9.8j. It's a flag to
1958   disable "rfc4507bis session ticket support".  rfc4507bis was later turned
1959   into the proper RFC5077 it seems: http://tools.ietf.org/html/rfc5077
1960
1961   The enabled extension concerns the session management. I wonder how often
1962   libcurl stops a connection and then resumes a TLS session. also, sending the
1963   session data is some overhead. .I suggest that you just use your proposed
1964   patch (which explicitly disables TICKET).
1965
1966   If someone writes an application with libcurl and openssl who wants to
1967   enable the feature, one can do this in the SSL callback.
1968
1969   Sharad Gupta brought this to my attention. Peter Sylvester helped me decide
1970   on the proper action.
1971
1972 - Alexey Borzov filed bug report #2535504
1973   (http://curl.haxx.se/bug/view.cgi?id=2535504) pointing out that realms with
1974   quoted quotation marks in HTTP Digest headers didn't work. I've now added
1975   test case 1095 that verifies my fix.
1976
1977 - Craig A West brought CURLOPT_NOPROXY and the corresponding --noproxy option.
1978   They basically offer the same thing the NO_PROXY environment variable only
1979   offered previously: list a set of host names that shall not use the proxy
1980   even if one is specified.
1981
1982 Daniel Fandrich (20 Jan 2009)
1983 - Call setlocale() for libtest tests to test the effects of locale-induced
1984   libc changes on libcurl.
1985
1986 - Fixed a couple more locale-dependent toupper conversions, mainly for
1987   clarity.  This does fix one problem that causes ;type=i FTP URLs
1988   to fail in the Turkish locale when CURLOPT_PROXY_TRANSFER_MODE is
1989   used (test case 561)
1990
1991 - Added tests 561 and 1091 through 1094 to test various combinations
1992   of ;type= and ;mode= URLs that could potentially fail in the Turkish
1993   locale.
1994
1995 Daniel Stenberg (20 Jan 2009)
1996 - Lisa Xu pointed out that the ssh.obj file was missing from the
1997   lib/Makefile.vc6 file (and thus from the vc8 and vc9 ones too).
1998
1999 Version 7.19.3 (19 January 2009)
2000
2001 Daniel Stenberg (16 Jan 2009)
2002 - Andrew de los Reyes fixed curlbuild.h for "generic" gcc builds on PPC, both
2003   32 bit and 64 bit.
2004
2005 Daniel Stenberg (15 Jan 2009)
2006 - Tim Ansell fixed a compiler warning in lib/cookie.c
2007
2008 Daniel Stenberg (14 Jan 2009)
2009 - Grant Erickson fixed timeouts for TFTP such that specifying a
2010   connect-timeout, a max-time or both options work correctly and as expected
2011   by passing the correct boolean value to Curl_timeleft via the
2012   'duringconnect' parameter.
2013
2014   With this small change, curl TFTP now behaves as expected (and likely as
2015   originally-designed):
2016
2017   1) For non-existent or unreachable dotted IP addresses:
2018
2019    a) With no options, follows the default curl 300s timeout...
2020    b) With --connect-timeout only, follows that value...
2021    c) With --max-time only, follows that value...
2022    d) With both --connect-timeout and --max-time, follows the smaller value...
2023
2024    and times out with a "curl: (7) Couldn't connect to server" error.
2025
2026   2) For transfers to/from a valid host:
2027
2028    a) With no options, follows default curl 300s timeout for the
2029       first XRQ/DATA/ACK transaction and the default TFTP 3600s
2030       timeout for the remainder of the transfer...
2031
2032    b) With --connect-time only, follows that value for the
2033       first XRQ/DATA/ACK transaction and the default TFTP 3600s
2034       timeout for the remainder of the transfer...
2035
2036    c) With --max-time only, follows that value for the first
2037       XRQ/DATA/ACK transaction and for the remainder of the
2038       transfer...
2039
2040    d) With both --connect-timeout and --max-time, follows the former
2041       for the first XRQ/DATA/ACK transaction and the latter for the
2042       remainder of the transfer...
2043
2044    and times out with a "curl: (28) Timeout was reached" error as
2045    appropriate.
2046
2047 Daniel Stenberg (13 Jan 2009)
2048 - Michael Wallner fixed a NULL pointer deref when calling
2049   curl_easy_setup(curl, CURLOPT_COOKIELIST, "SESS") on a CURL handle with no
2050   cookies data.
2051
2052 - Stefan Teleman brought a patch to fix the default curlbuild.h file for the
2053   SunPro compilers.
2054
2055 Daniel Stenberg (12 Jan 2009)
2056 - Based on bug report #2498665 (http://curl.haxx.se/bug/view.cgi?id=2498665)
2057   by Daniel Black, I've now added magic to the configure script that makes it
2058   use pkg-config to detect gnutls details as well if the existing method
2059   (using libgnutls-config) fails. While doing this, I cleaned up and unified
2060   the pkg-config usage when detecting openssl and nss as well.
2061
2062 Daniel Stenberg (11 Jan 2009)
2063 - Karl Moerder brought the patch that creates vc9 Makefiles, and I made
2064   'maketgz' now use the actual makefile targets to do the VC8 and VC9
2065   makefiles.
2066
2067 Daniel Stenberg (10 Jan 2009)
2068 - Emil Romanus fixed:
2069
2070   When using the multi interface over HTTP and the server returns a Location
2071   header, the running easy handle will get stuck in the CURLM_STATE_PERFORM
2072   state, leaving the external event loop stuck waiting for data from the
2073   ingoing socket (when using the curl_multi_socket_action stuff). While this
2074   bug was pretty hard to find, it seems to require only a one-line fix. The
2075   break statement on line 1374 in multi.c caused the function to skip the call
2076   to multistate().
2077
2078   How to reproduce this bug? Well, that's another question.  evhiperfifo.c in
2079   the examples directory chokes on this bug only _sometimes_, probably
2080   depending on how fast the URLs are added. One way of testing the bug out is
2081   writing to hiper.fifo from more than one source at the same time.
2082
2083 Daniel Fandrich (7 Jan 2009)
2084 - Unified much of the SessionHandle initialization done in Curl_open() and
2085   curl_easy_reset() by creating Curl_init_userdefined(). This had the side
2086   effect of fixing curl_easy_reset() so it now also resets
2087   CURLOPT_FTP_FILEMETHOD and CURLOPT_SSL_SESSIONID_CACHE
2088
2089 Daniel Stenberg (7 Jan 2009)
2090 - Rob Crittenden did once again provide an NSS update:
2091
2092   I have to jump through a few hoops now with the NSS library initialization
2093   since another part of an application may have already initialized NSS by the
2094   time Curl gets invoked. This patch is more careful to only shutdown the NSS
2095   library if Curl did the initialization.
2096
2097   It also adds in a bit of code to set the default ciphers if the app that
2098   call NSS_Init* did not call NSS_SetDomesticPolicy() or set specific
2099   ciphers. One might argue that this lets other application developers get
2100   lazy and/or they aren't using the NSS API correctly, and you'd be right.
2101   But still, this will avoid terribly difficult-to-trace crashes and is
2102   generally helpful.
2103
2104 Daniel Stenberg (1 Jan 2009)
2105 - 'reconf' is removed since we rather have users use 'buildconf'
2106
2107 Daniel Stenberg (31 Dec 2008)
2108 - Bas Mevissen reported http://curl.haxx.se/bug/view.cgi?id=2479030 pointing
2109   out that 'reconf' didn't properly point out the m4 subdirectory when running
2110   aclocal.
2111
2112 Daniel Stenberg (29 Dec 2008)
2113  - Phil Lisiecki filed bug report #2413067
2114   (http://curl.haxx.se/bug/view.cgi?id=2413067) that identified a problem that
2115   would cause libcurl to mark a DNS cache entry "in use" eternally if the
2116   subsequence TCP connect failed. It would thus never get pruned and refreshed
2117   as it should've been.
2118
2119   Phil provided his own patch to this problem that while it seemed to work
2120   wasn't complete and thus I wrote my own fix to the problem.
2121
2122 Daniel Stenberg (28 Dec 2008)
2123 - Peter Korsgaard fixed building libcurl with "configure --with-ssl
2124   --disable-verbose".
2125
2126 - Anthony Bryan fixed more language and spelling flaws in man pages.
2127
2128 Daniel Stenberg (22 Dec 2008)
2129 - Given a recent enough libssh2, libcurl can now seek/resume with SFTP even
2130   on file indexes beyond 2 or 4GB.
2131
2132 - Anthony Bryan provided a set of patches that cleaned up manual language,
2133   corrected spellings and more.
2134
2135 Daniel Stenberg (20 Dec 2008)
2136 - Igor Novoseltsev fixed a bad situation for the multi_socket() API when doing
2137   pipelining, as libcurl could then easily get confused and A) work on the
2138   handle that was not "first in queue" on a pipeline, or even B) tell the app
2139   to REMOVE a socket while it was in use by a second handle in a pipeline. Both
2140   errors caused hanging or stalling applications.
2141
2142 Daniel Stenberg (19 Dec 2008)
2143 - curl_multi_timeout() could return a timeout value of 0 even though nothing
2144   was actually ready to get done, as the internal time resolution is higher
2145   than the returned millisecond timer. Therefore it could cause applications
2146   running on fast processors to do short bursts of busy-loops.
2147   curl_multi_timeout() will now only return 0 if the timeout is actually
2148   alreay triggered.
2149
2150 - Using the libssh2 0.19 function libssh2_session_block_directions(), libcurl
2151   now has an improved ability to do right when the multi interface (both
2152   "regular" and multi_socket) is used for SCP and SFTP transfers. This should
2153   result in (much) less busy-loop situations and thus less CPU usage with no
2154   speed loss.
2155
2156 Daniel Stenberg (17 Dec 2008)
2157 - SCP and SFTP with the multi interface had the same flaw: the 'DONE'
2158   operation didn't complete properly if the EAGAIN equivalent was returned but
2159   libcurl would simply continue with a half-completed close operation
2160   performed. This ruined persistent connection re-use and cause some
2161   SSH-protocol errors in general. The correction is unfortunately adding a
2162   blocking function - doing it entirely non-blocking should be considered for
2163   a better fix.
2164
2165 Gisle Vanem (16 Dec 2008)
2166 - Added the possibility to use the Watt-32 tcp/ip stack under Windows.
2167   The change simply involved adding a USE_WATT32 section in the
2168   config-win32.h files (under ./lib and ./src). This section disables
2169   the use of any Winsock headers.
2170
2171 Daniel Stenberg (16 Dec 2008)
2172 - libssh2_sftp_last_error() was wrongly used at some places in libcurl which
2173   made libcurl sometimes not properly abort problematic SFTP transfers.
2174
2175 Daniel Stenberg (12 Dec 2008)
2176 - More work with Igor Novoseltsev to first fix the remaining stuff for
2177   removing easy handles from multi handles when the easy handle is/was within
2178   a HTTP pipeline. His bug report #2351653
2179   (http://curl.haxx.se/bug/view.cgi?id=2351653) was also related and was
2180   eventually fixed by a patch by Igor himself.
2181
2182 Yang Tse (12 Dec 2008)
2183 - Patrick Monnerat fixed a build regression, introduced in 7.19.2, affecting
2184   OS/400 compilations with IPv6 enabled.
2185
2186 Daniel Stenberg (12 Dec 2008)
2187 - Mark Karpeles filed bug report #2416182 titled "crash in ConnectionExists
2188   when using duphandle+curl_mutli"
2189   (http://curl.haxx.se/bug/view.cgi?id=2416182) which showed that
2190   curl_easy_duphandle() wrongly also copied the pointer to the connection
2191   cache, which was plain wrong and caused a segfault if the handle would be
2192   used in a different multi handle than the handle it was duplicated from.
2193
2194 Daniel Stenberg (11 Dec 2008)
2195 - Keshav Krity found out that libcurl failed to deal with dotted IPv6
2196   addresses if they were very long (>39 letters) due to a too strict address
2197   validity parser. It now accepts addresses up to 45 bytes long.
2198
2199 Daniel Stenberg (11 Dec 2008)
2200 - Internet Explorer had a broken HTTP digest authentication before v7 and
2201   there are servers "out there" that relies on the client doing this broken
2202   Digest authentication. Apache even comes with an option to work with such
2203   broken clients.
2204
2205   The difference is only for URLs that contain a query-part (a '?'-letter and
2206   text to the right of it).
2207
2208   libcurl now supports this quirk, and you enable it by setting the
2209   CURLAUTH_DIGEST_IE bit in the bitmask you pass to the CURLOPT_HTTPAUTH or
2210   CURLOPT_PROXYAUTH options. They are thus individually controlled to server
2211   and proxy.
2212
2213   (note that there's no way to activate this with the curl tool yet)
2214
2215 Daniel Fandrich (9 Dec 2008)
2216 - Added test cases 1089 and 1090 to test --write-out after a redirect to
2217   test a report that the size didn't work, but these test cases pass.
2218
2219 - Documented CURLOPT_CONNECT_ONLY as being useful only on HTTP URLs.
2220
2221 Daniel Stenberg (9 Dec 2008)
2222 - Ken Hirsch simplified how libcurl does FTPS: now it doesn't assume any
2223   particular state for the control connection like it did before for implicit
2224   FTPS (libcurl assumed such control connections to be encrypted while some
2225   FTPS servers such as FileZilla assumes such connections to be clear
2226   mode). Use the CURLOPT_USE_SSL option to set your desired level.
2227
2228 Daniel Stenberg (8 Dec 2008)
2229 - Fred Machado posted about a weird FTP problem on the curl-users list and when
2230   researching it, it turned out he got a 550 response back from a SIZE command
2231   and then I fell over the text in RFC3659 that says:
2232
2233    The presence of the 550 error response to a SIZE command MUST NOT be taken
2234    by the client as an indication that the file cannot be transferred in the
2235    current MODE and TYPE.
2236
2237   In other words: the change I did on September 30th 2008 and that has been
2238   included in the last two releases were a regression and a bad idea. We MUST
2239   NOT take a 550 response from SIZE as a hint that the file doesn't exist.
2240
2241 - Christian Krause filed bug #2221237
2242   (http://curl.haxx.se/bug/view.cgi?id=2221237) that identified an infinite
2243   loop during GSS authentication given some specific conditions. With his
2244   patience and great feedback I managed to narrow down the problem and
2245   eventually fix it although I can't test any of this myself!
2246
2247 Daniel Fandrich (3 Dec 2008)
2248 - Fixed the getifaddrs version of Curl_if2ip to work on systems without IPv6
2249   support (e.g. Minix)
2250
2251 Daniel Stenberg (3 Dec 2008)
2252 - Igor Novoseltsev filed bug #2351645
2253   (http://curl.haxx.se/bug/view.cgi?id=2351645) that identified a problem with
2254   the multi interface that occured if you removed an easy handle while in
2255   progress and the handle was used in a HTTP pipeline.
2256
2257 - Pawel Kierski pointed out a mistake in the cookie code that could lead to a
2258   bad fclose() after a fatal error had occured.
2259   (http://curl.haxx.se/bug/view.cgi?id=2382219)
2260
2261 Daniel Fandrich (25 Nov 2008)
2262 - If a HTTP request is Basic and num is already >=1000, the HTTP test
2263   server adds 1 to num to get the data section to return. This allows
2264   testing authentication negotiations using the Basic authentication
2265   method.
2266
2267 - Added tests 1087 and 1088 to test Basic authentication on a redirect
2268   with and without --location-trusted
2269
2270 Daniel Stenberg (24 Nov 2008)
2271 - Based on a patch by Vlad Grachov, libcurl now uses a new libssh2 0.19
2272   function when built to support SCP and SFTP that helps the library to know
2273   in which direction a particular libssh2 operation would return EAGAIN so
2274   that libcurl knows what socket conditions to wait for before trying the
2275   function call again. Previously (and still when using libssh2 0.18 or
2276   earlier), libcurl will busy-loop in this situation when the easy interface
2277   is used!
2278
2279 Daniel Fandrich (20 Nov 2008)
2280 - Automatically detect OpenBSD's CA cert bundle.
2281
2282 Daniel Stenberg (19 Nov 2008)
2283 - I removed the default use of "Pragma: no-cache" from libcurl when a proxy is
2284   used. It has been used since forever but it was never a good idea to use
2285   unless explicitly asked for.
2286
2287 - Josef Wolf's extension that allows a $TESTDIR/gdbinit$testnum file that when
2288   you use runtests.pl -g, will be sourced by gdb to allow additional fancy or
2289   whatever you see fit
2290
2291 - Christian Krause reported and fixed a memory leak that would occur with HTTP
2292   GSS/kerberos authentication (http://curl.haxx.se/bug/view.cgi?id=2284386)
2293
2294 - Andreas Wurf and Markus Koetter helped me analyze a problem that Andreas got
2295   when uploading files to a single FTP server using multiple easy handle
2296   handles with the multi interface. Occasionally a handle would stall in
2297   mysterious ways.
2298
2299   The problem turned out to be a side-effect of the ConnectionExists()
2300   function's eagerness to re-use a handle for HTTP pipelining so it would
2301   select it even if already being in use, due to an inadequate check for its
2302   chances of being used for pipelnining.
2303
2304 Daniel Fandrich (17 Nov 2008)
2305 - Added more compiler warning options for gcc 4.3
2306
2307 Yang Tse (17 Nov 2008)
2308 - Fix a remaining problem in the inet_pton() runtime configure check. And
2309   fix internal Curl_inet_pton() failures to reject certain malformed literals.
2310
2311 - Make configure script check if ioctl with the SIOCGIFADDR command can be
2312   used, and define HAVE_IOCTL_SIOCGIFADDR if appropriate.
2313
2314 Daniel Stenberg (16 Nov 2008)
2315 - Christian Krause fixed a build failure when building with gss support
2316   enabled and FTP disabled.
2317
2318 - Added check for NULL returns from strdup() in src/main.c and lib/formdata.c
2319   - reported by Jim Meyering also prevent buffer overflow on MSDOS when you do
2320   for example -O on a url with a file name part longer than PATH_MAX letters
2321
2322 - lib/nss.c fixes based on the report by Jim Meyering: I went over and added
2323   checks for return codes for all calls to malloc and strdup that were
2324   missing. I also changed a few malloc(13) to use arrays on the stack and a
2325   few malloc(PATH_MAX) to instead use aprintf() to lower memory use.
2326
2327 - I fixed a memory leak in Curl_nss_connect() when CURLOPT_ISSUERCERT is
2328   in use.
2329
2330 Daniel Fandrich (14 Nov 2008)
2331 - Added .xml as one of the few common file extensions known by the multipart
2332   form generator.
2333
2334 - Added some #ifdefs around header files and change the EAGAIN test to
2335   fix compilation on Cell (reported by Jeff Curley).
2336
2337 Yang Tse (14 Nov 2008)
2338 - Fixed several configure script issues affecting checks for inet_ntoa_r(),
2339   inet_ntop(), inet_pton(), getifaddrs(), fcntl() and getaddrinfo().
2340
2341 Yang Tse (13 Nov 2008)
2342 - Refactored configure script detection of functions used to set sockets into
2343   non-blocking mode, and decouple function detection from function capability.
2344