mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 16:18:48 -05:00
Brad House fixed a missing header file inclusion in adig sample program
This commit is contained in:
parent
47925f3dd7
commit
e5f0c38fa9
@ -1,5 +1,9 @@
|
|||||||
Changelog for the c-ares project
|
Changelog for the c-ares project
|
||||||
|
|
||||||
|
* May 30 2008 (Yang Tse)
|
||||||
|
|
||||||
|
- Brad House fixed a missing header file inclusion in adig sample program.
|
||||||
|
|
||||||
Version 1.5.2 (May 29, 2008)
|
Version 1.5.2 (May 29, 2008)
|
||||||
|
|
||||||
* May 13 2008 (Daniel Stenberg)
|
* May 13 2008 (Daniel Stenberg)
|
||||||
|
@ -1,21 +1,10 @@
|
|||||||
This is what's new and changed in the c-ares 1.5.2 release:
|
This is what's new and changed in the c-ares 1.5.3 release:
|
||||||
|
|
||||||
o code refactoring in ares_gethostbyaddr
|
o adig sample application compilation failure on some systems
|
||||||
o improved checking of /dev/urandom in configure script
|
|
||||||
o new sample application, acountry
|
|
||||||
o improved MSVC6 dsp files
|
|
||||||
o adig sample application supports NAPTR records
|
|
||||||
o improved file seeding randomizer
|
|
||||||
o improved parsing of resolver configuration files
|
|
||||||
o updated configure script to remove autoconf 2.62 warnings
|
|
||||||
o use monotonic time source if available
|
|
||||||
o return all PTR-records when doing reverse lookups
|
|
||||||
o millisecond resolution support for the timeout option
|
|
||||||
|
|
||||||
Thanks go to these friendly people for their efforts and contributions:
|
Thanks go to these friendly people for their efforts and contributions:
|
||||||
|
|
||||||
Erik Kline, Brad Spencer, Gisle Vanem, Alexey Simak, Eino Tuominen,
|
Brad House
|
||||||
Eino Tuominen, Yang Tse, Doug Goldstein, Sebastian<at>basti79.de,
|
|
||||||
and obviously Daniel Stenberg
|
and obviously Daniel Stenberg
|
||||||
|
|
||||||
Have fun!
|
Have fun!
|
||||||
|
@ -27,6 +27,9 @@
|
|||||||
#include <netinet/in.h>
|
#include <netinet/in.h>
|
||||||
#include <arpa/inet.h>
|
#include <arpa/inet.h>
|
||||||
#include <arpa/nameser.h>
|
#include <arpa/nameser.h>
|
||||||
|
#ifdef HAVE_ARPA_NAMESER_COMPAT_H
|
||||||
|
#include <arpa/nameser_compat.h>
|
||||||
|
#endif
|
||||||
#ifdef HAVE_UNISTD_H
|
#ifdef HAVE_UNISTD_H
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user