]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2782. [port] win32: use getaddrinfo() for hostname lookups.
authorMark Andrews <marka@isc.org>
Tue, 24 Nov 2009 02:14:17 +0000 (02:14 +0000)
committerMark Andrews <marka@isc.org>
Tue, 24 Nov 2009 02:14:17 +0000 (02:14 +0000)
                        [RT #20650]

CHANGES
config.h.win32

diff --git a/CHANGES b/CHANGES
index 26cd217a8e8eb52b03df45494d1572f55a577de1..cba11b12ccd7e64526e870c62b13754d1ae0deb5 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+2782.  [port]          win32: use getaddrinfo() for hostname lookups.
+                       [RT #20650]
+
 2777.  [contrib]       DLZ MYSQL auto reconnect support discovery was wrong.
 
 2772.  [security]      When validating, track whether pending data was from
index 7e77ba938056d043e118cb692c451f8002b96dd2..332852df3e8485084e842e921409eb14cf2912b8 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: config.h.win32,v 1.16.130.2 2008/04/02 23:46:28 tbox Exp $ */
+/* $Id: config.h.win32,v 1.16.130.3 2009/11/24 02:14:17 marka Exp $ */
 
 /*
  * win32 configuration file
@@ -227,5 +227,15 @@ typedef long off_t;
  * macro is used there.
  */
 
+
+/** define if struct addrinfo exists */
+#define HAVE_ADDRINFO
+
+/** define if getaddrinfo() exists */
+#define HAVE_GETADDRINFO
+
+/** define if gai_strerror() exists */
+#define HAVE_GAISTRERROR
+
 #define FD_SETSIZE 16384
 #include <windows.h>