diff --git a/CHANGES b/CHANGES index 92742cc8..1d490e4a 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,22 @@ +2023-02-10 Jerry Lundström + + Release 2.13.2 + + Updated pcap-thread to v4.0.1: + + Fixed issue with `pcap_dispatch()` during non-threaded timed runs by + checking packet timestamp and use `pcap_breakloop()` if the run + should end. + Based on reports, it looks like `pcap_dispatch()` won't stop + processing if load is high enough even if documentation says "only + one bufferful of packets is read at a time". + + Many thanks to Klaus Darilion @klaus3000 (NIC.AT) for the report + and helping to track down the issue and test fixes! + + e7d92fe Fix COPR + 7ecf217 pcap-thread + 2022-04-21 Jerry Lundström Release 2.13.1 diff --git a/LICENSE b/LICENSE index b92bbfcc..ab8bb88a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ DNS Statistics Collector (DSC) -Copyright (c) 2008-2022, OARC, Inc. +Copyright (c) 2008-2023, OARC, Inc. Copyright (c) 2007-2008, Internet Systems Consortium, Inc. Copyright (c) 2003-2007, The Measurement Factory, Inc. All rights reserved. diff --git a/configure.ac b/configure.ac index 332412ac..cfc63788 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2022, OARC, Inc. +# Copyright (c) 2008-2023, OARC, Inc. # Copyright (c) 2007-2008, Internet Systems Consortium, Inc. # Copyright (c) 2003-2007, The Measurement Factory, Inc. # All rights reserved. @@ -33,7 +33,7 @@ # POSSIBILITY OF SUCH DAMAGE. AC_PREREQ(2.61) -AC_INIT([DSC], [2.13.1], [dsc@dns-oarc.net], [dsc], [https://github.com/DNS-OARC/dsc/issues]) +AC_INIT([DSC], [2.13.2], [dsc@dns-oarc.net], [dsc], [https://github.com/DNS-OARC/dsc/issues]) AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects]) AC_CONFIG_SRCDIR([src/md_array.c]) AC_CONFIG_HEADER([src/config.h]) diff --git a/debian/changelog b/debian/changelog index e24ee642..750d57b3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,24 @@ +dsc (2.13.2-1~unstable+1) unstable; urgency=low + + * Release 2.13.2 + + Updated pcap-thread to v4.0.1: + + Fixed issue with `pcap_dispatch()` during non-threaded timed runs by + checking packet timestamp and use `pcap_breakloop()` if the run + should end. + Based on reports, it looks like `pcap_dispatch()` won't stop + processing if load is high enough even if documentation says "only + one bufferful of packets is read at a time". + + Many thanks to Klaus Darilion @klaus3000 (NIC.AT) for the report + and helping to track down the issue and test fixes! + + e7d92fe Fix COPR + 7ecf217 pcap-thread + + -- Jerry Lundström Fri, 10 Feb 2023 15:15:54 +0100 + dsc (2.13.1-1~unstable+1) unstable; urgency=low * Release 2.13.1 diff --git a/debian/copyright b/debian/copyright index c8eecae0..a4369312 100644 --- a/debian/copyright +++ b/debian/copyright @@ -3,15 +3,11 @@ Upstream-Name: dsc Source: https://github.com/DNS-OARC/dsc Files: * -Copyright: 2008-2022 OARC, Inc. +Copyright: 2008-2023 OARC, Inc. 2007-2008 Internet Systems Consortium, Inc. 2003-2007 The Measurement Factory, Inc. License: BSD-3-Clause -Files: debian/* -Copyright: 2022 Jerry Lundström -License: BSD-3-Clause - Files: src/pcap_layers/* Copyright: 2016 Duane Wessels 2016 The Measurement Factory, Inc. diff --git a/rpm/dsc.spec b/rpm/dsc.spec index bea3b9ba..66bbcdaf 100644 --- a/rpm/dsc.spec +++ b/rpm/dsc.spec @@ -1,5 +1,5 @@ Name: dsc -Version: 2.13.1 +Version: 2.13.2 Release: 1%{?dist} Summary: DNS Statistics Collector Group: Productivity/Networking/DNS/Utilities @@ -70,6 +70,20 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 10 2023 Jerry Lundström 2.13.2-1 +- Release 2.13.2 + * Updated pcap-thread to v4.0.1: + Fixed issue with `pcap_dispatch()` during non-threaded timed runs by + checking packet timestamp and use `pcap_breakloop()` if the run + should end. + Based on reports, it looks like `pcap_dispatch()` won't stop + processing if load is high enough even if documentation says "only + one bufferful of packets is read at a time". + * Many thanks to Klaus Darilion @klaus3000 (NIC.AT) for the report + and helping to track down the issue and test fixes! + * Commits: + e7d92fe Fix COPR + 7ecf217 pcap-thread * Thu Apr 21 2022 Jerry Lundström 2.13.1-1 - Release 2.13.1 * This patch release is mainly for build and packages where MaxMind DB diff --git a/src/asn_index.c b/src/asn_index.c index 3529a79b..725a5630 100644 --- a/src/asn_index.c +++ b/src/asn_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/asn_index.h b/src/asn_index.h index f919ccd4..9700d54f 100644 --- a/src/asn_index.h +++ b/src/asn_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/base64.h b/src/base64.h index 0e17c360..6a9ec69e 100644 --- a/src/base64.h +++ b/src/base64.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/certain_qnames_index.c b/src/certain_qnames_index.c index 33d40123..78ea1876 100644 --- a/src/certain_qnames_index.c +++ b/src/certain_qnames_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/certain_qnames_index.h b/src/certain_qnames_index.h index 8e9aae68..0b0c3c60 100644 --- a/src/certain_qnames_index.h +++ b/src/certain_qnames_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/client_index.c b/src/client_index.c index df5aabff..78099607 100644 --- a/src/client_index.c +++ b/src/client_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/client_index.h b/src/client_index.h index d3a54c88..02e5068c 100644 --- a/src/client_index.h +++ b/src/client_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/client_subnet_index.c b/src/client_subnet_index.c index c6336271..78b82493 100644 --- a/src/client_subnet_index.c +++ b/src/client_subnet_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/client_subnet_index.h b/src/client_subnet_index.h index 2db5cdb8..6c070016 100644 --- a/src/client_subnet_index.h +++ b/src/client_subnet_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/compat.c b/src/compat.c index 65236414..e304c9db 100644 --- a/src/compat.c +++ b/src/compat.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/compat.h b/src/compat.h index d4b33031..b8c8ebba 100644 --- a/src/compat.h +++ b/src/compat.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/config_hooks.c b/src/config_hooks.c index 788a39ae..27778409 100644 --- a/src/config_hooks.c +++ b/src/config_hooks.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/config_hooks.h b/src/config_hooks.h index 75d64026..216e9a01 100644 --- a/src/config_hooks.h +++ b/src/config_hooks.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/country_index.c b/src/country_index.c index 2d4d8daa..4e37a68e 100644 --- a/src/country_index.c +++ b/src/country_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/country_index.h b/src/country_index.h index 237196d7..dc06713a 100644 --- a/src/country_index.h +++ b/src/country_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/daemon.c b/src/daemon.c index f4fefc6d..06fc4694 100644 --- a/src/daemon.c +++ b/src/daemon.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/dataset_opt.h b/src/dataset_opt.h index b084b120..c06f0150 100644 --- a/src/dataset_opt.h +++ b/src/dataset_opt.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/dns_ip_version_index.c b/src/dns_ip_version_index.c index 3c4eb5d3..33ccae7e 100644 --- a/src/dns_ip_version_index.c +++ b/src/dns_ip_version_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/dns_ip_version_index.h b/src/dns_ip_version_index.h index d19a1f35..56d54153 100644 --- a/src/dns_ip_version_index.h +++ b/src/dns_ip_version_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/dns_message.c b/src/dns_message.c index 2d572c3d..f9c49168 100644 --- a/src/dns_message.c +++ b/src/dns_message.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/dns_message.h b/src/dns_message.h index 7cae46e9..80661023 100644 --- a/src/dns_message.h +++ b/src/dns_message.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/dns_protocol.c b/src/dns_protocol.c index 68b816aa..d2907f1c 100644 --- a/src/dns_protocol.c +++ b/src/dns_protocol.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/dns_protocol.h b/src/dns_protocol.h index 5ba11a41..689fed02 100644 --- a/src/dns_protocol.h +++ b/src/dns_protocol.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/dns_source_port_index.c b/src/dns_source_port_index.c index 211492d7..7a631bb9 100644 --- a/src/dns_source_port_index.c +++ b/src/dns_source_port_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/dns_source_port_index.h b/src/dns_source_port_index.h index 4edfde4c..810dd8e3 100644 --- a/src/dns_source_port_index.h +++ b/src/dns_source_port_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/dnstap.c b/src/dnstap.c index ef3097a5..eeaf0a09 100644 --- a/src/dnstap.c +++ b/src/dnstap.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/dnstap.h b/src/dnstap.h index c1e6b1e1..d2fa022c 100644 --- a/src/dnstap.h +++ b/src/dnstap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/do_bit_index.c b/src/do_bit_index.c index 9aeba24a..a87e544a 100644 --- a/src/do_bit_index.c +++ b/src/do_bit_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/do_bit_index.h b/src/do_bit_index.h index 948d8efd..4b4a6f16 100644 --- a/src/do_bit_index.h +++ b/src/do_bit_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/dsc-psl-convert b/src/dsc-psl-convert index b2821e11..a7c6da56 100755 --- a/src/dsc-psl-convert +++ b/src/dsc-psl-convert @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (c) 2008-2022, OARC, Inc. +# Copyright (c) 2008-2023, OARC, Inc. # Copyright (c) 2007-2008, Internet Systems Consortium, Inc. # Copyright (c) 2003-2007, The Measurement Factory, Inc. # All rights reserved. diff --git a/src/dsc-psl-convert.1.in b/src/dsc-psl-convert.1.in index 8cca8d08..b528cb9c 100644 --- a/src/dsc-psl-convert.1.in +++ b/src/dsc-psl-convert.1.in @@ -1,4 +1,4 @@ -.\" Copyright (c) 2008-2022, OARC, Inc. +.\" Copyright (c) 2008-2023, OARC, Inc. .\" Copyright (c) 2007-2008, Internet Systems Consortium, Inc. .\" Copyright (c) 2003-2007, The Measurement Factory, Inc. .\" All rights reserved. diff --git a/src/dsc.1.in b/src/dsc.1.in index 4ae7821b..27ac3725 100644 --- a/src/dsc.1.in +++ b/src/dsc.1.in @@ -1,4 +1,4 @@ -.\" Copyright (c) 2008-2022, OARC, Inc. +.\" Copyright (c) 2008-2023, OARC, Inc. .\" Copyright (c) 2007-2008, Internet Systems Consortium, Inc. .\" Copyright (c) 2003-2007, The Measurement Factory, Inc. .\" All rights reserved. diff --git a/src/dsc.conf.5.in b/src/dsc.conf.5.in index ed9257ec..23645153 100644 --- a/src/dsc.conf.5.in +++ b/src/dsc.conf.5.in @@ -1,4 +1,4 @@ -.\" Copyright (c) 2008-2022, OARC, Inc. +.\" Copyright (c) 2008-2023, OARC, Inc. .\" Copyright (c) 2007-2008, Internet Systems Consortium, Inc. .\" Copyright (c) 2003-2007, The Measurement Factory, Inc. .\" All rights reserved. diff --git a/src/edns_bufsiz_index.c b/src/edns_bufsiz_index.c index 6846792e..27f5d74e 100644 --- a/src/edns_bufsiz_index.c +++ b/src/edns_bufsiz_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/edns_bufsiz_index.h b/src/edns_bufsiz_index.h index e1d7c5cd..d1253485 100644 --- a/src/edns_bufsiz_index.h +++ b/src/edns_bufsiz_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/edns_version_index.c b/src/edns_version_index.c index 673bfbc0..d7b6f380 100644 --- a/src/edns_version_index.c +++ b/src/edns_version_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/edns_version_index.h b/src/edns_version_index.h index 076d33ea..444b622f 100644 --- a/src/edns_version_index.h +++ b/src/edns_version_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/encryption_index.c b/src/encryption_index.c index 87c20462..164634ff 100644 --- a/src/encryption_index.c +++ b/src/encryption_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/encryption_index.h b/src/encryption_index.h index 323a786d..ba692d27 100644 --- a/src/encryption_index.h +++ b/src/encryption_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/geoip.h b/src/geoip.h index aca6bbc4..39b1e64c 100644 --- a/src/geoip.h +++ b/src/geoip.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/hashtbl.c b/src/hashtbl.c index 2a754097..097c922d 100644 --- a/src/hashtbl.c +++ b/src/hashtbl.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/hashtbl.h b/src/hashtbl.h index b8910b11..40f6a535 100644 --- a/src/hashtbl.h +++ b/src/hashtbl.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/idn_qname_index.c b/src/idn_qname_index.c index 44ca2d65..2d8e1474 100644 --- a/src/idn_qname_index.c +++ b/src/idn_qname_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/idn_qname_index.h b/src/idn_qname_index.h index 41add9b3..5612fe25 100644 --- a/src/idn_qname_index.h +++ b/src/idn_qname_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/inX_addr.c b/src/inX_addr.c index 60b7e25b..29f064ba 100644 --- a/src/inX_addr.c +++ b/src/inX_addr.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/inX_addr.h b/src/inX_addr.h index 699066a2..cd7c9b9a 100644 --- a/src/inX_addr.h +++ b/src/inX_addr.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/input_mode.h b/src/input_mode.h index 363dbf64..636459b6 100644 --- a/src/input_mode.h +++ b/src/input_mode.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/ip_direction_index.c b/src/ip_direction_index.c index 35a6fbd1..18c97f3c 100644 --- a/src/ip_direction_index.c +++ b/src/ip_direction_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/ip_direction_index.h b/src/ip_direction_index.h index aaa27490..01b9c63e 100644 --- a/src/ip_direction_index.h +++ b/src/ip_direction_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/ip_proto_index.c b/src/ip_proto_index.c index e20b8a2a..bfa8cdef 100644 --- a/src/ip_proto_index.c +++ b/src/ip_proto_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/ip_proto_index.h b/src/ip_proto_index.h index 2fb44ca7..3e6bd755 100644 --- a/src/ip_proto_index.h +++ b/src/ip_proto_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/ip_version_index.c b/src/ip_version_index.c index bec9aaef..04187740 100644 --- a/src/ip_version_index.c +++ b/src/ip_version_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/ip_version_index.h b/src/ip_version_index.h index 4d14a26c..ce846e46 100644 --- a/src/ip_version_index.h +++ b/src/ip_version_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/label_count_index.c b/src/label_count_index.c index 23e0004c..79e7f424 100644 --- a/src/label_count_index.c +++ b/src/label_count_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/label_count_index.h b/src/label_count_index.h index d621be4d..ed7305da 100644 --- a/src/label_count_index.h +++ b/src/label_count_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/md_array.c b/src/md_array.c index 4e011707..2bbe499e 100644 --- a/src/md_array.c +++ b/src/md_array.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/md_array.h b/src/md_array.h index c0135312..9930d39f 100644 --- a/src/md_array.h +++ b/src/md_array.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/md_array_json_printer.c b/src/md_array_json_printer.c index 43c1c228..763e290c 100644 --- a/src/md_array_json_printer.c +++ b/src/md_array_json_printer.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/md_array_xml_printer.c b/src/md_array_xml_printer.c index 6f8a77a2..6ce63d1f 100644 --- a/src/md_array_xml_printer.c +++ b/src/md_array_xml_printer.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/msglen_index.c b/src/msglen_index.c index 8e970b57..1c8b9868 100644 --- a/src/msglen_index.c +++ b/src/msglen_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/msglen_index.h b/src/msglen_index.h index 531f5b85..8bdbee41 100644 --- a/src/msglen_index.h +++ b/src/msglen_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/null_index.c b/src/null_index.c index 3d09950c..ac9ea18e 100644 --- a/src/null_index.c +++ b/src/null_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/null_index.h b/src/null_index.h index 3f829d42..38dcc62d 100644 --- a/src/null_index.h +++ b/src/null_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/opcode_index.c b/src/opcode_index.c index 718186f6..6d61e6ab 100644 --- a/src/opcode_index.c +++ b/src/opcode_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/opcode_index.h b/src/opcode_index.h index 80649056..ccce3d00 100644 --- a/src/opcode_index.h +++ b/src/opcode_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/parse_conf.c b/src/parse_conf.c index 9e2a6466..810577c5 100644 --- a/src/parse_conf.c +++ b/src/parse_conf.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/parse_conf.h b/src/parse_conf.h index 3ee0d092..30a1cf19 100644 --- a/src/parse_conf.h +++ b/src/parse_conf.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/src/pcap.c b/src/pcap.c index b5ab7c17..32c07405 100644 --- a/src/pcap.c +++ b/src/pcap.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/pcap.h b/src/pcap.h index 12e7855b..154a7874 100644 --- a/src/pcap.h +++ b/src/pcap.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/qclass_index.c b/src/qclass_index.c index 24c8b55b..e742a5e4 100644 --- a/src/qclass_index.c +++ b/src/qclass_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/qclass_index.h b/src/qclass_index.h index b6d41f85..ce000984 100644 --- a/src/qclass_index.h +++ b/src/qclass_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/qname_index.c b/src/qname_index.c index 05be4f5e..a56060da 100644 --- a/src/qname_index.c +++ b/src/qname_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/qname_index.h b/src/qname_index.h index f59d0ede..d2ef5d6f 100644 --- a/src/qname_index.h +++ b/src/qname_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/qnamelen_index.c b/src/qnamelen_index.c index bd50211d..c68a7fb2 100644 --- a/src/qnamelen_index.c +++ b/src/qnamelen_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/qnamelen_index.h b/src/qnamelen_index.h index 88900938..37b039f4 100644 --- a/src/qnamelen_index.h +++ b/src/qnamelen_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/qr_aa_bits_index.c b/src/qr_aa_bits_index.c index 19b3f8bd..54dbb3ad 100644 --- a/src/qr_aa_bits_index.c +++ b/src/qr_aa_bits_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/qr_aa_bits_index.h b/src/qr_aa_bits_index.h index 189fccbd..2be14562 100644 --- a/src/qr_aa_bits_index.h +++ b/src/qr_aa_bits_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/qtype_index.c b/src/qtype_index.c index a840551f..cecec567 100644 --- a/src/qtype_index.c +++ b/src/qtype_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/qtype_index.h b/src/qtype_index.h index 208ae048..22bf86e8 100644 --- a/src/qtype_index.h +++ b/src/qtype_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/query_classification_index.c b/src/query_classification_index.c index 48cb6e4a..96b91a06 100644 --- a/src/query_classification_index.c +++ b/src/query_classification_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/query_classification_index.h b/src/query_classification_index.h index 332f4109..801eaf4c 100644 --- a/src/query_classification_index.h +++ b/src/query_classification_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/rcode_index.c b/src/rcode_index.c index f5a23d05..264b90e3 100644 --- a/src/rcode_index.c +++ b/src/rcode_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/rcode_index.h b/src/rcode_index.h index f5afa1b5..f40974e1 100644 --- a/src/rcode_index.h +++ b/src/rcode_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/rd_bit_index.c b/src/rd_bit_index.c index 07b99a44..567ce2bd 100644 --- a/src/rd_bit_index.c +++ b/src/rd_bit_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/rd_bit_index.h b/src/rd_bit_index.h index fba8a8e6..ca4c6844 100644 --- a/src/rd_bit_index.h +++ b/src/rd_bit_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/response_time_index.c b/src/response_time_index.c index 3a9db4e9..7cecfb08 100644 --- a/src/response_time_index.c +++ b/src/response_time_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/response_time_index.h b/src/response_time_index.h index 482c5701..ff253bf9 100644 --- a/src/response_time_index.h +++ b/src/response_time_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/server_ip_addr_index.c b/src/server_ip_addr_index.c index 48526ec1..90b86ecb 100644 --- a/src/server_ip_addr_index.c +++ b/src/server_ip_addr_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/server_ip_addr_index.h b/src/server_ip_addr_index.h index 28a5d189..5bbfa81e 100644 --- a/src/server_ip_addr_index.h +++ b/src/server_ip_addr_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/syslog_debug.h b/src/syslog_debug.h index a592448c..036a0c71 100644 --- a/src/syslog_debug.h +++ b/src/syslog_debug.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/tc_bit_index.c b/src/tc_bit_index.c index 6578a9f0..51594e14 100644 --- a/src/tc_bit_index.c +++ b/src/tc_bit_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/tc_bit_index.h b/src/tc_bit_index.h index 0926173f..49580355 100644 --- a/src/tc_bit_index.h +++ b/src/tc_bit_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/tld_index.c b/src/tld_index.c index d0031fb0..98a75141 100644 --- a/src/tld_index.c +++ b/src/tld_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/tld_index.h b/src/tld_index.h index 93c05012..4df10f34 100644 --- a/src/tld_index.h +++ b/src/tld_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/tld_list.c b/src/tld_list.c index 52608fcc..4d367bf6 100644 --- a/src/tld_list.c +++ b/src/tld_list.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/tld_list.h b/src/tld_list.h index 01e1fce4..8cee1dd0 100644 --- a/src/tld_list.h +++ b/src/tld_list.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/transport_index.c b/src/transport_index.c index 79ab994b..04aa773f 100644 --- a/src/transport_index.c +++ b/src/transport_index.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/transport_index.h b/src/transport_index.h index 36e9c500..3ceabe0f 100644 --- a/src/transport_index.h +++ b/src/transport_index.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/xmalloc.c b/src/xmalloc.c index 32e4760e..ab1cb830 100644 --- a/src/xmalloc.c +++ b/src/xmalloc.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved. diff --git a/src/xmalloc.h b/src/xmalloc.h index 07351cfc..5f3f1c45 100644 --- a/src/xmalloc.h +++ b/src/xmalloc.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008-2022, OARC, Inc. + * Copyright (c) 2008-2023, OARC, Inc. * Copyright (c) 2007-2008, Internet Systems Consortium, Inc. * Copyright (c) 2003-2007, The Measurement Factory, Inc. * All rights reserved.