]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorTinderbox User <tbox@isc.org>
Fri, 26 Apr 2013 23:45:14 +0000 (23:45 +0000)
committerTinderbox User <tbox@isc.org>
Fri, 26 Apr 2013 23:45:14 +0000 (23:45 +0000)
bin/tests/named.conf
bin/tests/rdata_test.c
lib/dns/acache.c
lib/dns/include/dns/acache.h
lib/dns/rdata/generic/hip_55.c
lib/dns/rdata/generic/hip_55.h

index 5766b3a7601cc40d5342603d7f6ed521de15204b..6360e04892fd3de9ba3bf3c63552ea6421218fa8 100644 (file)
@@ -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) 1999-2001  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
index 4fb9eb143899db8b4ca28240348bafa6699fe171..f13b3d19c9aa4d6c168274102be6e659c2fc3184 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2007, 2011, 2012  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2007, 2011-2013  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 1998-2003  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
index c10d5cd906a0daf08b1126865393cc16eca6e713..61f96ef27dac6274a4e64fc9386665af0cc01798 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2008, 2012  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2008, 2012, 2013  Internet Systems Consortium, Inc. ("ISC")
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
index d97dd64669bd046b0a7b8be9e5fb00f7defbd1b4..c372ed95a372b2d130dea5a91cabbeeabe4fb79b 100644 (file)
@@ -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")
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -25,7 +25,7 @@
 
 /*
  * Acache
- * 
+ *
  * The Additional Cache Object
  *
  *     This module manages internal caching entries that correspond to
  *     - 76 bytes for each additional cache entry
  *     - if the entry has a DNS name and associated RRset,
  *       * 44 bytes + size of the name (1-255 bytes)
- *       * 52 bytes x number_of_RRs 
+ *       * 52 bytes x number_of_RRs
  *     - 28 bytes for each DB related to this module
  *
  *     Using the additional cache also requires extra memory consumption in
@@ -418,7 +418,7 @@ dns_acache_attachentry(dns_acacheentry_t *source, dns_acacheentry_t **targetp);
  *
  *     *targetp is attached to 'source'.
  */
-                      
+
 void
 dns_acache_detachentry(dns_acacheentry_t **entryp);
 /*
@@ -432,7 +432,7 @@ dns_acache_detachentry(dns_acacheentry_t **entryp);
  *
  *     *entryp is NULL.
  *
- *     If '*entryp' is the last reference to the entry, 
+ *     If '*entryp' is the last reference to the entry,
  *     cache does not have an outstanding task, all resources used by the
  *     entry (including the entry object itself) will be freed.
  */
index 4e3bbe0286a98cf98fc8be280feb63e38e8076ec..a7fca52010f19bddd4091406ed7040f99e446db2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2009  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013  Internet Systems Consortium, Inc. ("ISC")
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -133,7 +133,7 @@ totext_hip(ARGS_TOTEXT) {
 
        hit_len = uint8_fromregion(&region);
        isc_region_consume(&region, 1);
-       
+
        algorithm = uint8_fromregion(&region);
        isc_region_consume(&region, 1);
 
@@ -142,7 +142,7 @@ totext_hip(ARGS_TOTEXT) {
 
        if ((tctx->flags & DNS_STYLEFLAG_MULTILINE) != 0)
                RETERR(str_totext("( ", target));
-               
+
        /*
         * Algorithm
         */
@@ -277,7 +277,7 @@ fromstruct_hip(ARGS_FROMSTRUCT) {
        RETERR(uint16_tobuffer(hip->key_len, target));
        RETERR(mem_tobuffer(target, hip->hit, hip->hit_len));
        RETERR(mem_tobuffer(target, hip->key, hip->key_len));
-       
+
        myhip = *hip;
        for (result = dns_rdata_hip_first(&myhip);
             result == ISC_R_SUCCESS;
@@ -336,11 +336,11 @@ tostruct_hip(ARGS_TOSTRUCT) {
 
  cleanup:
        if (hip->hit != NULL)
-               isc_mem_free(mctx, hip->hit);   
+               isc_mem_free(mctx, hip->hit);
        if (hip->key != NULL)
-               isc_mem_free(mctx, hip->key);   
+               isc_mem_free(mctx, hip->key);
        if (hip->servers != NULL)
-               isc_mem_free(mctx, hip->servers);       
+               isc_mem_free(mctx, hip->servers);
        return (ISC_R_NOMEMORY);
 
 }
@@ -354,10 +354,10 @@ freestruct_hip(ARGS_FREESTRUCT) {
        if (hip->mctx == NULL)
                return;
 
-       isc_mem_free(hip->mctx, hip->hit);      
-       isc_mem_free(hip->mctx, hip->key);      
+       isc_mem_free(hip->mctx, hip->hit);
+       isc_mem_free(hip->mctx, hip->key);
        if (hip->servers != NULL)
-               isc_mem_free(hip->mctx, hip->servers);  
+               isc_mem_free(hip->mctx, hip->servers);
        hip->mctx = NULL;
 }
 
index 69f2eba88046ba42a7a65e22d61b1a26926f665d..8579148804614d41f1c591672951d1a7a64529ba 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2009  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2013  Internet Systems Consortium, Inc. ("ISC")
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above