/*
- * Copyright (C) 2004, 2006 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2006, 2008 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2001 Internet Software Consortium.
*
- * Permission to use, copy, modify, and distribute this software for any
+ * Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: config.h.win32,v 1.8.18.7 2008/04/02 03:09:07 marka Exp $ */
+/* $Id: config.h.win32,v 1.8.18.8 2008/04/02 23:45:57 tbox Exp $ */
/*
* win32 configuration file
/* open() under unix allows setting of read/write permissions
* at the owner, group and other levels. These don't exist in NT
- * We'll just map them all to the NT equivalent
+ * We'll just map them all to the NT equivalent
*/
#define S_IRUSR _S_IREAD /* Owner read permission */
*/
#include <versions.h>
-/* We actually are using the CryptAPI and not a device */
+/* We actually are using the CryptAPI and not a device */
#define PATH_RANDOMDEV "CryptAPI"
#include <stddef.h>
/*
- * Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2008 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 2001 Internet Software Consortium.
*
- * Permission to use, copy, modify, and distribute this software for any
+ * Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: platform.h,v 1.9.18.4 2008/04/02 03:09:08 marka Exp $ */
+/* $Id: platform.h,v 1.9.18.5 2008/04/02 23:45:58 tbox Exp $ */
#ifndef ISC_PLATFORM_H
#define ISC_PLATFORM_H 1
#ifdef LIBISC_EXPORTS
#define LIBISC_EXTERNAL_DATA __declspec(dllexport)
#else
-#define LIBISC_EXTERNAL_DATA __declspec(dllimport)
+#define LIBISC_EXTERNAL_DATA __declspec(dllimport)
#endif
#ifdef LIBISCCFG_EXPORTS
#define LIBISCCFG_EXTERNAL_DATA __declspec(dllexport)
#else
-#define LIBISCCFG_EXTERNAL_DATA __declspec(dllimport)
+#define LIBISCCFG_EXTERNAL_DATA __declspec(dllimport)
#endif
#ifdef LIBISCCC_EXPORTS
#define LIBISCCC_EXTERNAL_DATA __declspec(dllexport)
#else
-#define LIBISCCC_EXTERNAL_DATA __declspec(dllimport)
+#define LIBISCCC_EXTERNAL_DATA __declspec(dllimport)
#endif
#ifdef LIBDNS_EXPORTS
/*
- * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2008 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: interfaceiter.c,v 1.8.18.4 2008/04/02 03:09:08 marka Exp $ */
+/* $Id: interfaceiter.c,v 1.8.18.5 2008/04/02 23:45:58 tbox Exp $ */
/*
* Note that this code will need to be revisited to support IPv6 Interfaces.
isc_result_t
isc_interfaceiter_create(isc_mem_t *mctx, isc_interfaceiter_t **iterp) {
- char strbuf[ISC_STRERRORSIZE];
+ char strbuf[ISC_STRERRORSIZE];
isc_interfaceiter_t *iter;
isc_result_t result;
int error;
sprintf(iter->current.name,
"TCP/IPv6 Interface %d", iter->pos6 + 1);
- for (i = 0; i< 16; i++)
+ for (i = 0; i< 16; i++)
iter->current.netmask.type.in6.s6_addr[i] = 0xff;
iter->current.netmask.family = AF_INET6;
return (ISC_R_SUCCESS);
* Microsoft's implementation is peculiar for returning
* the list in reverse order
*/
-
+
if (iter->numIF == 0)
iter->pos4 = (INTERFACE_INFO *)(iter->buf4 + (iter->v4IF));
/*
- * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005, 2007, 2008 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2003 Internet Software Consortium.
*
* Permission to use, copy, modify, and/or distribute this software for any
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: net.c,v 1.9.18.7 2008/04/02 03:09:08 marka Exp $ */
+/* $Id: net.c,v 1.9.18.8 2008/04/02 23:45:58 tbox Exp $ */
#include <config.h>