Sync up with reality
[platform/upstream/c-ares.git] / CHANGES
1   Changelog for the c-ares project
2
3 * Oct 7 2008 (Yang Tse)
4 - Added --enable-optimize configure option to enable and disable compiler
5   optimizations to allow decoupled setting from --enable-debug.
6
7 * Oct 2 2008 (Yang Tse)
8 - Added --enable-warnings configure option to enable and disable strict
9   compiler warnings to allow decoupled setting from --enable-debug.
10
11 * Sep 17 2008 (Yang Tse)
12 - Code reorganization to allow internal/private use of "nameser.h" to any
13   system that lacks arpa/nameser.h or arpa/nameser_compat.h header files.
14
15 * Sep 16 2008 (Yang Tse)
16 - Code reorganization to allow internal/private use of ares_writev to any
17   system that lacks the writev function.
18
19 * Sep 15 2008 (Yang Tse)
20 - Code reorganization to allow internal/private use of ares_strcasecmp to any
21   system that lacks the strcasecmp function.
22
23 - Improve configure detection of some string functions.
24
25 * Sep 11 2008 (Yang Tse)
26 - Code reorganization to allow internal/private use of ares_strdup to any
27   system that lacks the strdup function.
28
29 Version 1.5.3 (Aug 29, 2008)
30
31 * Aug 25 2008 (Yang Tse)
32 - Improvement by Brad House:
33
34   This patch addresses an issue in which a response could be sent back to the
35   source port of a client from a different address than the request was made to.
36   This is one form of a DNS cache poisoning attack.
37
38   The patch simply uses recvfrom() rather than recv() and validates that the
39   address returned from recvfrom() matches the address of the server we have
40   connected to. Only necessary on UDP sockets as they are connection-less, TCP
41   is unaffected.
42
43 - Fix by George Neill:
44   Fixed compilation of acountry sample application failure on some systems.
45
46 * Aug 4 2008 (Daniel Stenberg)
47 - Fix by Tofu Linden:
48
49   The symptom:
50   * Users (usually, but not always) on 2-Wire routers and the Comcast service
51   and a wired connection to their router would find that the second and
52   subsequent DNS lookups from fresh processes using c-ares to resolve the same
53   address would cause the process to never see a reply (it keeps polling for
54   around 1m15s before giving up).
55
56   The repro:
57   * On such a machine (and yeah, it took us a lot of QA to find the systems
58   that reproduce such a specific problem!), do 'ahost www.secondlife.com',
59   then do it again.  The first process's lookup will work, subsequent lookups
60   will time-out and fail.
61
62   The cause:
63   * init_id_key() was calling randomize_key() *before* it initialized
64   key->state, meaning that the randomness generated by randomize_key() is
65   immediately overwritten with deterministic values. (/dev/urandom was also
66   being read incorrectly in the c-ares version we were using, but this was
67   fixed in a later version.)
68   * This makes the stream of generated query-IDs from any new c-ares process
69   be an identical and predictable sequence of IDs.
70   * This makes the 2-Wire's default built-in DNS server detect these queries
71   as probable-duplicates and (erroneously) not respond at all.
72
73
74 * Aug 4 2008 (Yang Tse)
75 - Autoconf 2.62 has changed the behaviour of the AC_AIX macro which we use.
76   Prior versions of autoconf defined _ALL_SOURCE if _AIX was defined. 2.62
77   version of AC_AIX defines _ALL_SOURCE and other four preprocessor symbols
78   no matter if the system is AIX or not. To keep the traditional behaviour,
79   and an uniform one across autoconf versions AC_AIX is replaced with our
80   own internal macro CARES_CHECK_AIX_ALL_SOURCE.
81
82 * Aug 1 2008 (Yang Tse)
83 - Configure process now checks if the preprocessor _REENTRANT symbol is already
84   defined. If it isn't currently defined a set of checks are performed to test
85   if its definition is required to make visible to the compiler a set of *_r
86   functions. Finally, if _REENTRANT is already defined or needed it takes care
87   of making adjustments necessary to ensure that it is defined equally for the
88   configure process tests and generated config file.
89
90 * Jul 20 2008 (Yang Tse)
91 - When recvfrom prototype uses a void pointer for arguments 2, 5 or 6 this will
92   now cause the definition, as appropriate, of RECVFROM_TYPE_ARG2_IS_VOID,
93   RECVFROM_TYPE_ARG5_IS_VOID or RECVFROM_TYPE_ARG6_IS_VOID.
94
95 * Jul 17 2008 (Yang Tse)
96 - RECVFROM_TYPE_ARG2, RECVFROM_TYPE_ARG5 and RECVFROM_TYPE_ARG6 are now defined
97   to the data type pointed by its respective argument and not the pointer type.
98
99 * Jul 16 2008 (Yang Tse)
100 - Improved configure detection of number of arguments for getservbyport_r.
101   Detection is now based on compilation checks instead of linker ones.
102
103 - Configure process now checks availability of recvfrom() socket function and
104   finds out its return type and the types of its arguments. Added definitions
105   for non-configure systems config files, and introduced macro sreadfrom which
106   will be used on udp sockets as a recvfrom() wrapper in the future.
107
108 * Jul 15 2008 (Yang Tse)
109 - Introduce definition of _REENTRANT symbol in setup.h to improve library
110   usability.  Previously the configure process only used the AC_SYS_LARGEFILE
111   macro for debug builds, now it is also used for non-debug ones enabling the
112   use of configure options --enable-largefile and --disable-largefile which
113   might be needed for library compatibility.  Remove checking the size of
114   curl_off_t, it is no longer needed.
115
116 * Jul 3 2008 (Daniel Stenberg)
117 - Phil Blundell: If you ask ares_gethostbyname() to do an AF_INET6 lookup and
118   the target host has only A records, it automatically falls back to an
119   AF_INET lookup and gives you the A results.  However, if the target host has
120   a CNAME record, this behaviour is defeated since the original query does
121   return some data even though ares_parse_aaa_reply() doesn't consider it
122   relevant. Here's a small patch to make it behave the same with and without
123   the CNAME.
124
125 * Jul 2 2008 (Yang Tse)
126 - Fallback to gettimeofday when monotonic clock is unavailable at run-time.
127
128 * Jun 30 2008 (Daniel Stenberg)
129
130 - As was pointed out to me by Andreas Schuldei, the MAXHOSTNAMELEN define is
131   not posix or anything and thus c-ares failed to build on hurd (and possibly
132   elsewhere). The define was also somewhat artificially used in the windows
133   port. Now, I instead rewrote the use of gethostbyname to enlarge the host
134   name buffer in case of need and totally avoid the use of the MAXHOSTNAMELEN
135   define. I thus also removed the defien from the namser.h file where it was
136   once added for the windows build.
137
138   I also fixed init_by_defaults() function to not leak memory in case if
139   error.
140
141 * Jun 9 2008 (Yang Tse)
142
143 - Make libcares.pc generated file for pkg-config include information relative
144   to the libraries needed for the static linking of c-ares.
145
146 * May 30 2008 (Yang Tse)
147
148 - Brad House fixed a missing header file inclusion in adig sample program.
149
150 Version 1.5.2 (May 29, 2008)
151
152 * May 13 2008 (Daniel Stenberg)
153
154 - Introducing millisecond resolution support for the timeout option. See
155   ares_init_options()'s ARES_OPT_TIMEOUTMS.
156
157 * May 9 2008 (Yang Tse)
158
159 - Use monotonic time source if available, for private function ares__tvnow()
160
161 * May 7 2008 (Daniel Stenberg)
162
163 - Sebastian made c-ares able to return all PTR-records when doing reverse
164   lookups. It is not common practice to have multiple PTR-Records for a single
165   IP, but its perfectly legal and some sites have those.
166
167 - Doug Goldstein provided a configure patch: updates autoconf 2.13 usage to
168   autoconf 2.57 usage (which is the version you have specified as the minimum
169   version). It's a minor change but it does clean up some warnings with newer
170   autoconf (specifically 2.62).
171
172 * May 5 2008 (Yang Tse)
173
174 - Improved parsing of resolver configuration files.
175
176 * April 4 2008 (Daniel Stenberg)
177
178 - Eino Tuominen improved the code when a file is used to seed the randomizer.
179
180 - Alexey Simak made adig support NAPTR records
181
182 - Alexey Simak fixed the VC dsp file by adding the missing source file
183   ares_expand_string.c
184
185 * December 11 2007 (Gisle Vanem)
186
187 - Added another sample application; acountry.c which converts an
188   IPv4-address(es) and/or host-name(s) to country-name and country-code.
189   This uses the service of the DNSBL at countries.nerd.dk.
190
191 * December 3 2007 (Daniel Stenberg)
192
193 - Brad Spencer fixed the configure script to assume that there's no
194   /dev/urandom when built cross-compiled as then the script cannot check for
195   it.
196
197 - Erik Kline cleaned up ares_gethostbyaddr.c:next_lookup() somewhat
198
199 Version 1.5.1 (Nov 21, 2007)
200
201 * November 21 2007 (Daniel Stenberg)
202
203 - Robin Cornelius pointed out that ares_llist.h was missing in the release
204   archive for 1.5.0
205
206 Version 1.5.0 (Nov 21, 2007)
207
208 * October 2 2007 (Daniel Stenberg)
209
210 - ares_strerror() segfaulted if the input error number was out of the currently
211   supported range.
212
213 - Yang Tse: Avoid a segfault when generating a DNS "Transaction ID" in
214   internal function init_id_key() under low memory conditions.
215
216 * September 28 2007 (Daniel Stenberg)
217
218 - Bumped version to 1.5.0 for next release and soname bumped to 2 due to ABI
219   and API changes in the progress callback (and possibly more coming up from
220   Steinar)
221
222 * September 28 2007 (Steinar H. Gunderson)
223
224 - Don't skip a server if it's the only one. (Bugfix from the Google tree.)
225
226 - Made the query callbacks receive the number of timeouts that happened during
227   the execution of a query, and updated documentation accordingly. (Patch from
228   the Google tree.)
229
230 - Support a few more socket options: ARES_OPT_SOCK_SNDBUF and
231   ARES_OPT_SOCK_RCVBUF
232
233 - Always register for TCP events even if there are no outstanding queries, as
234   the other side could always close the connection, which is a valid event
235   which should be responded to.
236
237 * September 22 2007 (Daniel Stenberg)
238
239 - Steinar H. Gunderson fixed: Correctly clear sockets from the fd_set on in
240   several functions (write_tcp_data, read_tcp_data, read_udp_packets) so that
241   if it fails and the socket is closed the following code doesn't try to use
242   the file descriptor.
243
244 - Steinar H. Gunderson modified c-ares to now also do to DNS retries even when
245   TCP is used since there are several edge cases where it still makes sense.
246
247 - Brad House provided a fix for ares_save_options():
248
249   Apparently I overlooked something with the ares_save_options() where it
250   would try to do a malloc(0) when no options of that type needed to be saved.
251   On most platforms, this was fine because malloc(0) doesn't actually return
252   NULL, but on AIX it does, so ares_save_options would return ARES_ENOMEM.
253
254 * July 14 2007 (Daniel Stenberg)
255
256 - Vlad Dinulescu fixed two outstanding valgrind reports:
257
258   1. In ares_query.c , in find_query_by_id we compare q->qid (which is a short
259   int variable) with qid, which is declared as an int variable.  Moreover,
260   DNS_HEADER_SET_QID is used to set the value of qid, but DNS_HEADER_SET_QID
261   sets only the first two bytes of qid. I think that qid should be declared as
262   "unsigned short" in this function.
263
264   2. The same problem occurs in ares_process.c, process_answer() .  query->qid
265   (an unsigned short integer variable) is compared with id, which is an
266   integer variable. Moreover, id is initialized from DNS_HEADER_QID which sets
267   only the first two bytes of id. I think that the id variable should be
268   declared as "unsigned short" in this function.
269
270   Even after declaring these variables as "unsigned short", the valgrind
271   errors are still there. Which brings us to the third problem.
272
273   3. The third problem is that Valgrind assumes that query->qid is not
274   initialised correctly. And it does that because query->qid is set from
275   DNS_HEADER_QID(qbuf); Valgrind says that qbuf has unitialised bytes. And
276   qbuf has uninitialised bytes because of channel->next_id . And next_id is
277   set by ares_init.c:ares__generate_new_id() . I found that putting short r=0
278   in this function (instead of short r) makes all Valgrind warnings go away.
279   I have studied ares__rc4() too, and this is the offending line:
280
281         buffer_ptr[counter] ^= state[xorIndex];   (ares_query.c:62)
282
283   This is what triggers Valgrind.. buffer_ptr is unitialised in this function,
284   and by applying ^= on it, it remains unitialised.
285
286 Version 1.4.0 (June 8, 2007)
287
288 * June 4 2007 (Daniel Stenberg)
289
290 - James Bursa reported a major memory problem when resolving multi-IP names
291   and I found and fixed the problem. It was added by Ashish Sharma's patch
292   two days ago.
293
294   When I then tried to verify multiple entries in /etc/hosts after my fix, I
295   got another segfault and decided this code was not ripe for inclusion and I
296   reverted the patch.
297
298 * June 2 2007
299
300 - Brad Spencer found and fixed three flaws in the code, found with the new
301   gcc 4.2.0 warning: -Waddress
302
303 - Brad House fixed VS2005 compiler warnings due to time_t being 64bit.
304   He also made recent Microsoft compilers use _strdup() instead of strdup().
305
306 - Brad House's man pages for ares_save_options() and ares_destroy_options()
307   were added.
308
309 - Ashish Sharma provided a patch for supporting multiple entries in the
310   /etc/hosts file. Patch edited for coding style and functionality by me
311   (Daniel).
312
313 * May 30 2007
314
315 - Shmulik Regev brought cryptographically secure transaction IDs:
316
317   The c-ares library implementation uses a DNS "Transaction ID" field that is
318   seeded with a pseudo random number (based on gettimeofday) which is
319   incremented (++) between consecutive calls and is therefore rather
320   predictable. In general, predictability of DNS Transaction ID is a well
321   known security problem (e.g.
322   http://bak.spc.org/dms/archive/dns_id_attack.txt) and makes a c-ares based
323   implementation vulnerable to DNS poisoning. Credit goes to Amit Klein
324   (Trusteer) for identifying this problem.
325
326   The patch I wrote changes the implementation to use a more secure way of
327   generating unique IDs. It starts by obtaining a key with reasonable entropy
328   which is used with an RC4 stream to generate the cryptographically secure
329   transaction IDs.
330
331   Note that the key generation code (in ares_init:randomize_key) has two
332   versions, the Windows specific one uses a cryptographically safe function
333   provided (but undocumented :) by the operating system (described at
334   http://blogs.msdn.com/michael_howard/archive/2005/01/14/353379.aspx).  The
335   default implementation is a bit naive and uses the standard 'rand'
336   function. Surely a better way to generate random keys exists for other
337   platforms.
338
339   The patch can be tested by using the adig utility and using the '-s' option.
340
341 - Brad House added ares_save_options() and ares_destroy_options() that can be
342   used to keep options for later re-usal when ares_init_options() is used.
343
344   Problem: Calling ares_init() for each lookup can be unnecessarily resource
345          intensive.  On windows, it must LoadLibrary() or search the registry
346          on each call to ares_init().  On unix, it must read and parse
347          multiple files to obtain the necessary configuration information.  In
348          a single-threaded environment, it would make sense to only
349          ares_init() once, but in a heavily multi-threaded environment, it is
350          undesirable to ares_init() and ares_destroy() for each thread created
351          and track that.
352
353   Solution: Create ares_save_options() and ares_destroy_options() functions to
354          retrieve and free options obtained from an initialized channel.  The
355          options populated can be used to pass back into ares_init_options(),
356          it should populate all needed fields and not retrieve any information
357          from the system.  Probably wise to destroy the cache every minute or
358          so to prevent the data from becoming stale.
359
360 - Daniel S added ares_process_fd() to allow applications to ask for processing
361   on specific sockets and thus avoiding select() and associated
362   functions/macros.  This function will be used by upcoming libcurl releases
363   for this very reason. It also made me export the ares_socket_t type in the
364   public ares.h header file, since ares_process_fd() uses that type for two of
365   the arguments.
366
367 * May 25 2007
368
369 - Ravi Pratap fixed a flaw in the init_by_resolv_conf() function for windows
370   that could cause it to return a bad return code.
371
372 * April 16 2007
373
374 - Yang Tse: Provide ares_getopt() command-line parser function as a source
375   code helper function, not belonging to the actual c-ares library.
376
377 * February 19 2007
378
379 - Vlad Dinulescu added ares_parse_ns_reply().
380
381 * February 13 2007
382
383 - Yang Tse: Fix failure to get the search sequence of /etc/hosts and
384   DNS from /etc/nsswitch.conf, /etc/host.conf or /etc/svc.conf when
385   /etc/resolv.conf did not exist or was unable to read it.
386
387 * November 22 2006
388
389 - Install ares_dns.h too
390
391 - Michael Wallner fixed this problem: When I set domains in the options
392   struct, and there are domain/search entries in /etc/resolv.conf, the domains
393   of the options struct will be overridden.
394
395 * November 6 2006
396
397 - Yang Tse removed a couple of potential zero size memory allocations.
398
399 - Andreas Rieke fixed the line endings in the areslib.dsp file that I (Daniel)
400   broke in the 1.3.2 release. We should switch to a system where that file is
401   auto-generated. We could rip some code for that from curl...
402
403 Version 1.3.2 (November 3, 2006)
404
405 * October 12 2006
406
407 - Prevent ares_getsock() to overflow if more than 16 sockets are used.
408
409 * September 11 2006
410
411 - Guilherme Balena Versiani: I noted a strange BUG in Win32 port
412   (ares_init.c/get_iphlpapi_dns_info() function): when I disable the network
413   by hand or disconnect the network cable in Windows 2000 or Windows XP, my
414   application gets 127.0.0.1 as the only name server. The problem comes from
415   'GetNetworkParams' function, that returns the empty string "" as the only
416   name server in that case. Moreover, the Windows implementation of
417   inet_addr() returns INADDR_LOOPBACK instead of INADDR_NONE.
418
419 * August 29 2006
420
421 - Brad Spencer did
422
423   o made ares_version.h use extern "C" for c++ compilers
424   o fixed compiler warnings in ares_getnameinfo.c
425   o fixed a buffer position init for TCP reads
426
427 * August 3 2006
428
429 - Ravi Pratap fixed ares_getsock() to actually return the proper bitmap and
430   not always zero!
431
432 Version 1.3.1 (June 24, 2006)
433
434 * July 23, 2006
435
436 - Gisle Vanem added getopt() to the ahost program. Currently accepts
437   only [-t {a|aaaa}] to specify address family in ares_gethostbyname().
438
439 * June 19, 2006
440
441 - (wahern) Removed "big endian" DNS section and RR data integer parser
442   macros from ares_dns.h, which break c-ares on my Sparc64. Bit-wise
443   operations in C operate on logical values. And in any event the octets are
444   already in big-endian (aka network) byte order so they're being reversed
445   (thus the source of the breakage).
446
447 * June 18, 2006
448
449 - William Ahern handles EAGAIN/EWOULDBLOCK errors in most of the I/O calls
450   from area_process.c.
451
452   TODO: Handle one last EAGAIN for a UDP socket send(2) in
453   ares__send_query().
454
455 * May 10, 2006
456
457 - Bram Matthys brought my attention to a libtool peculiarity where detecting
458   things such as C++ compiler actually is a bad thing and since we don't need
459   that detection I added a work-around, much inspired by a previous patch by
460   Paolo Bonzini. This also shortens the configure script quite a lot.
461
462 * May 3, 2006
463
464 - Nick Mathewson added the ARES_OPT_SOCK_STATE_CB option that when set makes
465   c-ares call a callback on socket state changes. A better way than the
466   ares_getsock() to get full control over the socket state.
467
468 * January 9, 2006
469
470 - Alexander Lazic improved the getservbyport_r() configure check.
471
472 * January 6, 2006
473
474 - Alexander Lazic pointed out that the buildconf should use the ACLOCAL_FLAGS
475   variable for easier controlling what it does and how it runs.
476
477 * January 5, 2006
478
479 - James Bursa fixed c-ares to find the hosts file on RISC OS, and made it
480   build with newer gcc versions that no longer defines "riscos".
481
482 * December 22
483
484 - Daniel Stenberg added ares_getsock() that extracts the set of sockets to
485   wait for action on. Similar to ares_fds() but not restricted to using
486   select() for the waiting.
487
488 * November 25
489
490 - Yang Tse fixed some send() / recv() compiler warnings
491
492 * September 18
493
494 - Added constants that will be used by ares_getaddrinfo
495
496 - Made ares_getnameinfo use the reentrant getservbyport (getservbyport_r) if it
497   is available to ensure it works properly in a threaded environment.
498
499 * September 10
500
501 - configure fix for detecting a member in the sockaddr_in6 struct which failed
502   on ipv6-enabled HP-UX 11.00
503
504 Version 1.3.0 (August 29, 2005)
505
506 * August 21
507
508 - Alfredo Tupone provided a fix for the Windows code in get_iphlpapi_dns_info()
509   when getting the DNS server etc.
510
511 * June 19
512
513 - Added some checks for the addrinfo structure.
514
515 * June 2
516
517 - William Ahern:
518
519   Make UDP sockets non-blocking. I've confirmed that at least on Linux 2.4 a
520   read event can come back from poll() on a valid SOCK_DGRAM socket but
521   recv(2) will still block. This patch doesn't ignore EAGAIN in
522   read_udp_packets(), though maybe it should. (This patch was edited by Daniel
523   Stenberg and a new configure test was added (imported from curl's configure)
524   to properly detect what non-blocking socket approach to use.)
525
526   I'm not quite sure how this was happening, but I've been seeing PTR queries
527   which seem to return empty responses. At least, they were empty when calling
528   ares_expand_name() on the record. Here's a patch which guarantees to
529   NUL-terminate the expanded name. The old behavior failed to NUL-terminate if
530   len was 0, and this was causing strlen() to run past the end of the buffer
531   after calling ares_expand_name() and getting ARES_SUCCESS as the return
532   value. If q is not greater than *s then it's equal and *s is always
533   allocated with at least one byte.
534
535 * May 16
536
537 - Added ares_getnameinfo which mimics the getnameinfo API (another feature
538   that could use testing).
539
540 * May 14
541
542 - Added an inet_ntop function from BIND for systems that do not have it.
543
544 * April 9
545
546 - Made sortlist support IPv6 (this can probably use some testing).
547
548 - Made sortlist support CIDR matching for IPv4.
549
550 * April 8
551
552 - Added preliminary IPv6 support to ares_gethostbyname. Currently, sortlist
553   does not work with IPv6. Also provided an implementation of bitncmp from
554   BIND for systems that do not supply this function. This will be used to add
555   IPv6 support to sortlist.
556
557 - Made ares_gethostbyaddr support IPv6 by specifying AF_INET6 as the family.
558   The function can lookup IPv6 addresses both from files (/etc/hosts) and
559   DNS lookups.
560
561 * April 7
562
563 - Tupone Alfredo fixed includes of arpa/nameser_compat.h to build fine on Mac
564   OS X.
565
566 * April 5
567
568 - Dominick Meglio: Provided implementations of inet_net_pton and inet_pton
569   from BIND for systems that do not include these functions.
570
571 * March 11, 2005
572
573 - Dominick Meglio added ares_parse_aaaa_reply.c and did various
574   adjustments. The first little steps towards IPv6 support!
575
576 * November 7
577
578 - Fixed the VC project and makefile to use ares_cancel and ares_version
579
580 * October 24
581
582 - The released ares_version.h from 1.2.1 says 1.2.0 due to a maketgz flaw.
583   This is now fixed.
584
585 Version 1.2.1 (October 20, 2004)
586
587 * September 29
588
589 - Henrik Stoerner fix: got a report that Tru64 Unix (the unix from Digital
590   when they made Alpha's) uses /etc/svc.conf for the purpose fixed below for
591   other OSes. He made c-ares check for and understand it if present.
592
593 - Now c-ares will use local host name lookup _before_ DNS resolving by default
594   if nothing else is told.
595
596 * September 26
597
598 - Henrik Stoerner: found out that c-ares does not look at the /etc/host.conf
599   file to determine the sequence in which to search /etc/hosts and DNS.  So on
600   systems where this order is defined by /etc/host.conf instead of a "lookup"
601   entry in /etc/resolv.conf, c-ares will always default to looking in DNS
602   first, and /etc/hosts second.
603
604   c-ares now looks at
605
606   1) resolv.conf (for the "lookup" line);
607   2) nsswitch.fon (for the "hosts:" line);
608   3) host.conf (for the "order" line).
609
610   First match wins.
611
612 - Dominick Meglio patched: C-ares on Windows assumed that the HOSTS file is
613   located in a static location. It assumed
614   C:\Windows\System32\Drivers\Etc. This is a poor assumption to make. In fact,
615   the location of the HOSTS file can be changed via a registry setting.
616
617   There is a key called DatabasePath which specifies the path to the HOSTS
618   file:
619   http://www.microsoft.com/technet/itsolutions/network/deploy/depovg/tcpip2k.mspx
620
621   The patch will make c-ares correctly consult the registry for the location
622   of this file.
623
624 * August 29
625
626 - Gisle Vanem fixed the MSVC build files.
627
628 * August 20
629
630 - Gisle Vanem made c-ares build and work with his Watt-32 TCP/IP stack.
631
632 * August 13
633
634 - Harshal Pradhan made a minor syntax change in ares_init.c to make it build
635   fine with MSVC 7.1
636
637 * July 24
638
639 - Made the lib get built static only if --enable-debug is used.
640
641 - Gisle Vanem fixed:
642
643   Basically in loops like handle_errors(), 'query->next' was assigned a local
644   variable and then query was referenced after the memory was freed by
645   next_server(). I've changed that so next_server() and end_query() returns
646   the next query. So callers should use this ret-value.
647
648   The next problem was that 'server->tcp_buffer_pos' had a random value at
649   entry to 1st recv() (luckily causing Winsock to return ENOBUFS).
650
651   I've also added a ares_writev() for Windows to streamline the code a bit
652   more.
653
654 * July 20
655 - Fixed a few variable return types for some system calls. Made configure
656   check for ssize_t to make it possible to use that when receiving the send()
657   error code. This is necessary to prevent compiler warnings on some systems.
658
659 - Made configure create config.h, and all source files now include setup.h that
660   might include the proper config.h (or a handicrafted alternative).
661
662 - Switched to 'ares_socket_t' type for sockets in ares, since Windows don't
663   use 'int' for that.
664
665 - automake-ified and libool-ified c-ares. Now it builds libcares as a shared
666   lib on most platforms if wanted. (This bloated the size of the release
667   archive with another 200K!)
668
669 - Makefile.am now uses Makefile.inc for the c sources, h headers and man
670   pages, to make it easier for other makefiles to use the exact same set of
671   files.
672
673 - Adjusted 'maketgz' to use the new automake magic when building distribution
674   archives.
675
676 - Anyone desires HTML and/or PDF versions of the man pages in the release
677   archives?
678
679 * July 3
680 - Günter Knauf made c-ares build and run on Novell Netware.
681
682 * July 1
683 - Gisle Vanem provided Makefile.dj to build with djgpp, added a few more djgpp
684   fixes and made ares not use 'errno' to provide further info on Windows.
685
686 * June 30
687 - Gisle Vanem made it build with djgpp and run fine with the Watt-32 stack.
688
689 * June 10
690 - Gisle Vanem's init patch for Windows:
691
692   The init_by_resolv_conf() function fetches the DNS-server(s)
693   from a series of registry branches.
694
695   This can be wrong in the case where DHCP has assigned nameservers, but the
696   user has overridden these servers with other prefered settings. Then it's
697   wrong to use the DHCPNAMESERVER setting in registry.
698
699   In the case of no global DHCP-assigned or fixed servers, but DNS server(s)
700   per adapter, one has to query the adapter branches.  But how can c-ares know
701   which adapter is valid for use? AFAICS it can't. There could be one adapter
702   that is down (e.g. a VPN adapter).
703
704   So it's better to leave this to the IP Helper API (iphlapi) available in
705   Win-98/2000 and later. My patch falls-back to the old way if not available.
706
707 * June 8
708 - James Bursa fixed an init issue for RISC OS.
709
710 * May 11
711 - Nico Stappenbelt reported that when processing domain and search lines in
712   the resolv.conf file, the first entry encountered is processed and used as
713   the search list. According to the manual pages for both Linux, Solaris and
714   Tru64, the last entry of either a domain or a search field is used.
715
716   This is now adjusted in the code
717
718 Version 1.2.0 (April 13, 2004)
719
720 * April 2, 2004
721 - Updated various man pages to look nicer when converted to HTML on the web
722   site.
723
724 * April 1, 2004
725 - Dirk Manske provided a new function that is now named ares_cancel(). It is
726   used to cancel/cleanup a resolve/request made using ares functions on the
727   given ares channel. It does not destroy/kill the ares channel itself.
728
729 - Dominick Meglio cleaned up the formatting in several man pages.
730
731 * March 30, 2004
732 - Dominick Meglio's new ares_expand_string. A helper function when decoding
733   incoming DNS packages.
734
735 - Daniel Stenberg modified the Makefile.in to use a for loop for the man page
736   installation to improve overview and make it easier to add man pages.
737
738 Version 1.1.0 (March 11, 2004)
739
740 * March 9, 2004
741 - Gisle Vanem improved build on Windows.
742
743 * February 25, 2004
744 - Dan Fandrich found a flaw in the Feb 22 fix.
745
746 - Added better configure --enable-debug logic (taken from the curl configure
747   script). Added acinclude.m4 to the tarball.
748
749 * February 23, 2004
750 - Removed ares_free_errmem(), the function, the file and the man page. It was
751   not used and it did nothing.
752
753 - Fixed a lot of code that wasn't "64bit clean" and thus caused a lot of
754   compiler warnings on picky compilers.
755
756 * February 22, 2004
757 - Dominick Meglio made ares init support multiple name servers in the
758   NameServer key on Windows.
759
760 * February 16, 2004
761 - Modified ares_private.h to include libcurl's memory debug header if
762   CURLDEBUG is set. This makes all the ares-functions supervised properly by
763   the curl test suite. This also forced me to add inclusion of the
764   ares_private.h header in a few more files that are using some kind of
765   memory-related resources.
766
767 - Made the makefile only build ahost and adig if 'make demos' is used.
768
769 * February 10, 2004
770 - Dirk Manske made ares_version.h installed with 'make install'
771
772 * February 4, 2004
773 - ares_free_errmem() is subject for removal, it is simply present for future
774   purposes, and since we removed the extra parameter in strerror() it won't
775   be used by c-ares!
776 - configure --enable-debug now enables picky compiler options if gcc is used
777 - fixed several compiler warnings --enable-debug showed and Joerg Mueller-Tolk
778   reported
779
780 Version 1.0.0 (February 3, 2004)
781
782 * February 3, 2004
783 - now we produce the libcares.a library instead of the previous libares.a
784   since we are no longer compatible
785
786 * February 2, 2004
787
788 - ares_strerror() has one argument less. This is the first official
789   modification of the existing provided ares API.
790
791 * January 29, 2004
792
793 - Dirk Manske fixed how the socket is set non-blocking.
794
795 * January 4, 2004
796
797 - Dominick Meglio made the private gettimeofday() become ares_gettimeofday()
798   instead in order to not pollute the name space and risk colliding with
799   other libraries' versions of this function.
800
801 * October 24, 2003. Daniel Stenberg
802
803   Added ares_version().
804
805 Version 1.0-pre1 (8 October 2003)
806
807 - James Bursa made it run on RISC OS
808
809 - Dominick Meglio made it run fine on NT4
810
811 - Duncan Wilcox made it work fine on Mac OS X
812
813 - Daniel Stenberg adjusted the windows port
814
815 - liren at vivisimo.com made the initial windows port
816
817 * Imported the sources from ares 1.1.1