]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorAutomatic Updater <source@isc.org>
Thu, 11 Sep 2008 23:45:32 +0000 (23:45 +0000)
committerAutomatic Updater <source@isc.org>
Thu, 11 Sep 2008 23:45:32 +0000 (23:45 +0000)
lib/isc/win32/errno2result.c
lib/isc/win32/include/isc/mutex.h
lib/isc/win32/socket.c
win32utils/readme1st.txt

index 358d521532d23265e047d1317dc86a31ba30584d..b9388c28de734848699b958e0a27184e25c91581 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Copyright (C) 2004, 2005  Internet Systems Consortium, Inc. ("ISC")
- * Copyright (C) 2000-2002  Internet Software Consortium.
+ * Copyright (C) 2004, 2005, 2007, 2008  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2000-2003  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: errno2result.c,v 1.4.2.5.2.13 2008/09/11 21:06:29 each Exp $ */
+/* $Id: errno2result.c,v 1.4.2.5.2.14 2008/09/11 23:45:32 tbox Exp $ */
 
 #include <config.h>
 
index e73adb1636f2ffd8efc40e040a6a32a93e51a0fd..942f9a7140dcbfbb26870c8c35152e3cf02dcca5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2008  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 1998-2001  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: mutex.h,v 1.16.206.2 2008/09/11 07:16:33 marka Exp $ */
+/* $Id: mutex.h,v 1.16.206.3 2008/09/11 23:45:32 tbox Exp $ */
 
 #ifndef ISC_MUTEX_H
 #define ISC_MUTEX_H 1
index bea5c1531b8c7a95cf92e057a0f2e6e75bad4404..0adc5ee17846d066f44205697011e8fb9fddd7ac 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: socket.c,v 1.5.2.13.2.42 2008/09/11 12:29:20 marka Exp $ */
+/* $Id: socket.c,v 1.5.2.13.2.43 2008/09/11 23:45:32 tbox Exp $ */
 
 /* This code uses functions which are only available on Server 2003 and
  * higher, and Windows XP and higher.
@@ -555,10 +555,10 @@ iocompletionport_update(isc_socket_t *sock) {
                                ISC_LOGCATEGORY_GENERAL,
                                ISC_LOGMODULE_SOCKET, ISC_LOG_ERROR,
                                isc_msgcat, ISC_MSGSET_SOCKET,
-                               ISC_MSG_TOOMANYHANDLES,
+                               ISC_MSG_TOOMANYHANDLES,
                                "iocompletionport_update: failed to open"
                                " io completion port: %s",
-                               strbuf);
+                               strbuf);
 
                /* XXXMLG temporary hack to make failures detected.
                 * This function should return errors to the caller, not
@@ -951,7 +951,7 @@ build_msghdr_send(isc_socket_t *sock, isc_socketevent_t *dev,
 
        memcpy(&msg->to_addr, &dev->address.type, dev->address.length);
        msg->to_addr_len = dev->address.length;
-       
+
        buffer = ISC_LIST_HEAD(dev->bufferlist);
        write_count = 0;
        iovcount = 0;
@@ -1534,7 +1534,7 @@ consistent(isc_socket_t *sock) {
        if (crash) {
                socket_log(__LINE__, sock, NULL, CREATION, isc_msgcat, ISC_MSGSET_SOCKET,
                           ISC_MSG_DESTROYING, "SOCKET INCONSISTENT: %s",
-                          crash_reason);
+                          crash_reason);
                sock_dump(sock);
                INSIST(crash == ISC_FALSE);
        }
@@ -2011,7 +2011,7 @@ internal_accept(isc_socket_t *sock, IoCompletionInfo *lpo, int accept_errno) {
        result = make_nonblock(adev->newsocket->fd);
        INSIST(result == ISC_R_SUCCESS);
 
-       INSIST(setsockopt(nsock->fd, SOL_SOCKET, SO_UPDATE_ACCEPT_CONTEXT, 
+       INSIST(setsockopt(nsock->fd, SOL_SOCKET, SO_UPDATE_ACCEPT_CONTEXT,
               (char *)&sock->fd, sizeof(sock->fd)) == 0);
 
        /*
@@ -2119,7 +2119,7 @@ internal_connect(isc_socket_t *sock, IoCompletionInfo *lpo, int connect_errno) {
                }
        } else {
                INSIST(setsockopt(sock->fd, SOL_SOCKET, SO_UPDATE_CONNECT_CONTEXT, NULL, 0) == 0);
-               cdev->result = ISC_R_SUCCESS;
+               cdev->result = ISC_R_SUCCESS;
                sock->connected = 1;
                socket_log(__LINE__, sock, &sock->address, IOEVENT,
                           isc_msgcat, ISC_MSGSET_SOCKET, ISC_MSG_ACCEPTEDCXN,
@@ -2341,7 +2341,7 @@ SocketIoThread(LPVOID ThreadContext) {
                                                     INFINITE);
                if (lpo == NULL) /* Received request to exit */
                        break;
-               
+
                REQUIRE(VALID_SOCKET(sock));
 
                request = lpo->request_type;
@@ -2645,7 +2645,7 @@ socket_recv(isc_socket_t *sock, isc_socketevent_t *dev, isc_task_t *task,
 
        /*
         * If there are more receivers waiting for data, queue another receive
-        * here.  If the 
+        * here.  If the
         */
        queue_receive_request(sock);
 
@@ -2756,7 +2756,7 @@ isc_socket_recv(isc_socket_t *sock, isc_region_t *region, unsigned int minimum,
 
        ret = isc_socket_recv2(sock, region, minimum, task, dev, 0);
        UNLOCK(&sock->lock);
-       return (ret);   
+       return (ret);
 }
 
 isc_result_t
@@ -3235,7 +3235,7 @@ isc_socket_accept(isc_socket_t *sock,
        lpo->adev = adev;
        lpo->request_type = SOCKET_ACCEPT;
 
-       ISCAcceptEx(sock->fd, 
+       ISCAcceptEx(sock->fd,
                    nsock->fd,                          /* Accepted Socket */
                    lpo->acceptbuffer,                  /* Buffer for initial Recv */
                    0,                                  /* Length of Buffer */
index 36d13d57adf25e6fc099bc7fc1e20c77a6f4a1c0..a6c4a7a2e4094151ba1e706663cce7ae970ac2af 100644 (file)
@@ -1,8 +1,8 @@
-Copyright (C) 2004, 2005, 2007  Internet Systems Consortium, Inc. ("ISC")
+Copyright (C) 2004, 2005, 2007, 2008  Internet Systems Consortium, Inc. ("ISC")
 Copyright (C) 2001, 2003  Internet Software Consortium.
 See COPYRIGHT in the source root or http://isc.org/copyright.html for terms.
 
-$Id: readme1st.txt,v 1.7.2.4.4.7 2008/09/11 06:14:47 each Exp $
+$Id: readme1st.txt,v 1.7.2.4.4.8 2008/09/11 23:45:32 tbox Exp $
 
           Release of BIND 9.3 for Window XP/2003