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