mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-01 15:05:23 +00:00
update copyright notice
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2004, 2006, 2007, 2009, 2011 Internet Systems Consortium, Inc. ("ISC")
|
* Copyright (C) 2004, 2006, 2007, 2009, 2011, 2013 Internet Systems Consortium, Inc. ("ISC")
|
||||||
* Copyright (C) 1999-2002 Internet Software Consortium.
|
* Copyright (C) 1999-2002 Internet Software Consortium.
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2004, 2006, 2007, 2009 Internet Systems Consortium, Inc. ("ISC")
|
* Copyright (C) 2004, 2006, 2007, 2009, 2013 Internet Systems Consortium, Inc. ("ISC")
|
||||||
* Copyright (C) 2000, 2001 Internet Software Consortium.
|
* Copyright (C) 2000, 2001 Internet Software Consortium.
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC")
|
* Copyright (C) 2004, 2007, 2013 Internet Systems Consortium, Inc. ("ISC")
|
||||||
* Copyright (C) 2000, 2001 Internet Software Consortium.
|
* Copyright (C) 2000, 2001 Internet Software Consortium.
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
@@ -78,15 +78,15 @@
|
|||||||
#define FD_CLR(fd, set) do { \
|
#define FD_CLR(fd, set) do { \
|
||||||
u_int __i; \
|
u_int __i; \
|
||||||
for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count; __i++) { \
|
for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count; __i++) { \
|
||||||
if (((fd_set FAR *)(set))->fd_array[__i] == (SOCKET) fd) { \
|
if (((fd_set FAR *)(set))->fd_array[__i] == (SOCKET) fd) { \
|
||||||
while (__i < ((fd_set FAR *)(set))->fd_count-1) { \
|
while (__i < ((fd_set FAR *)(set))->fd_count-1) { \
|
||||||
((fd_set FAR *)(set))->fd_array[__i] = \
|
((fd_set FAR *)(set))->fd_array[__i] = \
|
||||||
((fd_set FAR *)(set))->fd_array[__i+1]; \
|
((fd_set FAR *)(set))->fd_array[__i+1]; \
|
||||||
__i++; \
|
__i++; \
|
||||||
} \
|
} \
|
||||||
((fd_set FAR *)(set))->fd_count--; \
|
((fd_set FAR *)(set))->fd_count--; \
|
||||||
break; \
|
break; \
|
||||||
} \
|
} \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
@@ -94,15 +94,15 @@
|
|||||||
#define FD_SET(fd, set) do { \
|
#define FD_SET(fd, set) do { \
|
||||||
u_int __i; \
|
u_int __i; \
|
||||||
for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count; __i++) { \
|
for (__i = 0; __i < ((fd_set FAR *)(set))->fd_count; __i++) { \
|
||||||
if (((fd_set FAR *)(set))->fd_array[__i] == (SOCKET)(fd)) { \
|
if (((fd_set FAR *)(set))->fd_array[__i] == (SOCKET)(fd)) { \
|
||||||
break; \
|
break; \
|
||||||
} \
|
} \
|
||||||
} \
|
} \
|
||||||
if (__i == ((fd_set FAR *)(set))->fd_count) { \
|
if (__i == ((fd_set FAR *)(set))->fd_count) { \
|
||||||
if (((fd_set FAR *)(set))->fd_count < FD_SETSIZE) { \
|
if (((fd_set FAR *)(set))->fd_count < FD_SETSIZE) { \
|
||||||
((fd_set FAR *)(set))->fd_array[__i] = (SOCKET)(fd); \
|
((fd_set FAR *)(set))->fd_array[__i] = (SOCKET)(fd); \
|
||||||
((fd_set FAR *)(set))->fd_count++; \
|
((fd_set FAR *)(set))->fd_count++; \
|
||||||
} \
|
} \
|
||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2004, 2006, 2007 Internet Systems Consortium, Inc. ("ISC")
|
* Copyright (C) 2004, 2006, 2007, 2013 Internet Systems Consortium, Inc. ("ISC")
|
||||||
* Copyright (C) 2000, 2001 Internet Software Consortium.
|
* Copyright (C) 2000, 2001 Internet Software Consortium.
|
||||||
*
|
*
|
||||||
* Permission to use, copy, modify, and/or distribute this software for any
|
* Permission to use, copy, modify, and/or distribute this software for any
|
||||||
|
Reference in New Issue
Block a user