From 59ae429972c16c377135bcccfee646b7df446933 Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Mon, 1 Mar 2021 18:01:11 +0100 Subject: MAINT: Update copyright notice to 2021 This was done by running scripts/updateLicenseHeaders.py and then manually editing the LICENSE file. --- src/tests/Benchmark.cpp | 5 +++++ src/tests/Collections.cpp | 5 +++++ src/tests/Emit.cpp | 5 +++++ src/tests/Hash.cpp | 5 +++++ src/tests/Lock.cpp | 5 +++++ src/tests/OverlayTest.cpp | 5 +++++ src/tests/ProtoBuf.cpp | 5 +++++ src/tests/ProtoBuf.proto | 5 +++++ src/tests/Resample.cpp | 5 +++++ src/tests/TestCrypt/TestCrypt.cpp | 2 +- src/tests/TestCryptographicHash/TestCryptographicHash.cpp | 2 +- src/tests/TestCryptographicRandom/TestCryptographicRandom.cpp | 2 +- src/tests/TestFFDHE/TestFFDHE.cpp | 2 +- src/tests/TestLink.cpp | 5 +++++ src/tests/TestPacketDataStream/TestPacketDataStream.cpp | 2 +- src/tests/TestPasswordGenerator/TestPasswordGenerator.cpp | 2 +- src/tests/TestSSLLocks/TestSSLLocks.cpp | 2 +- src/tests/TestSelfSignedCertificate/TestSelfSignedCertificate.cpp | 2 +- src/tests/TestServerAddress/TestServerAddress.cpp | 2 +- src/tests/TestServerResolver/TestServerResolver.cpp | 2 +- src/tests/TestStdAbs/TestStdAbs.cpp | 2 +- src/tests/TestTimer/TestTimer.cpp | 2 +- .../TestUnresolvedServerAddress/TestUnresolvedServerAddress.cpp | 2 +- src/tests/TestXMLTools/TestXMLTools.cpp | 2 +- 24 files changed, 64 insertions(+), 14 deletions(-) (limited to 'src/tests') diff --git a/src/tests/Benchmark.cpp b/src/tests/Benchmark.cpp index 216d266ea..251923ad4 100644 --- a/src/tests/Benchmark.cpp +++ b/src/tests/Benchmark.cpp @@ -1,3 +1,8 @@ +// Copyright 2007-2021 The Mumble Developers. All rights reserved. +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file at the root of the +// Mumble source tree or at . + /** * Provided a target address spawns a specified number of senders/speakers, * UDP-listeners and TCP-listeners. diff --git a/src/tests/Collections.cpp b/src/tests/Collections.cpp index 30a5b3930..ef6a5228d 100644 --- a/src/tests/Collections.cpp +++ b/src/tests/Collections.cpp @@ -1,3 +1,8 @@ +// Copyright 2009-2021 The Mumble Developers. All rights reserved. +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file at the root of the +// Mumble source tree or at . + /** * Benchmark of storage mechanisms; array, vector, Qt collections. */ diff --git a/src/tests/Emit.cpp b/src/tests/Emit.cpp index 81417573c..8250bf6a9 100644 --- a/src/tests/Emit.cpp +++ b/src/tests/Emit.cpp @@ -1,3 +1,8 @@ +// Copyright 2009-2021 The Mumble Developers. All rights reserved. +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file at the root of the +// Mumble source tree or at . + #include "Timer.h" #include #include diff --git a/src/tests/Hash.cpp b/src/tests/Hash.cpp index a82408177..6f4908b04 100644 --- a/src/tests/Hash.cpp +++ b/src/tests/Hash.cpp @@ -1,3 +1,8 @@ +// Copyright 2009-2021 The Mumble Developers. All rights reserved. +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file at the root of the +// Mumble source tree or at . + #include #include "Timer.h" diff --git a/src/tests/Lock.cpp b/src/tests/Lock.cpp index 48edf602b..26897f5cb 100644 --- a/src/tests/Lock.cpp +++ b/src/tests/Lock.cpp @@ -1,3 +1,8 @@ +// Copyright 2009-2021 The Mumble Developers. All rights reserved. +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file at the root of the +// Mumble source tree or at . + /** * Benchmark of different locking mechanisms; QMutex, PosixMutex, Silly * (int-flag). diff --git a/src/tests/OverlayTest.cpp b/src/tests/OverlayTest.cpp index 56152c6c3..289d91525 100644 --- a/src/tests/OverlayTest.cpp +++ b/src/tests/OverlayTest.cpp @@ -1,3 +1,8 @@ +// Copyright 2010-2021 The Mumble Developers. All rights reserved. +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file at the root of the +// Mumble source tree or at . + /** * Overlay drawing test application. */ diff --git a/src/tests/ProtoBuf.cpp b/src/tests/ProtoBuf.cpp index faa47081c..efa1cc0c8 100644 --- a/src/tests/ProtoBuf.cpp +++ b/src/tests/ProtoBuf.cpp @@ -1,3 +1,8 @@ +// Copyright 2009-2021 The Mumble Developers. All rights reserved. +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file at the root of the +// Mumble source tree or at . + /** * Protobuf binding benchmarks (serialisation, deserialization, ...). */ diff --git a/src/tests/ProtoBuf.proto b/src/tests/ProtoBuf.proto index 2a178fc49..2052ab76b 100644 --- a/src/tests/ProtoBuf.proto +++ b/src/tests/ProtoBuf.proto @@ -1,3 +1,8 @@ +// Copyright 2009-2021 The Mumble Developers. All rights reserved. +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file at the root of the +// Mumble source tree or at . + option optimize_for = SPEED; message Authenticate { diff --git a/src/tests/Resample.cpp b/src/tests/Resample.cpp index 909b62554..cb0c72d90 100644 --- a/src/tests/Resample.cpp +++ b/src/tests/Resample.cpp @@ -1,3 +1,8 @@ +// Copyright 2009-2021 The Mumble Developers. All rights reserved. +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file at the root of the +// Mumble source tree or at . + /** * Speex resampling test / information. */ diff --git a/src/tests/TestCrypt/TestCrypt.cpp b/src/tests/TestCrypt/TestCrypt.cpp index 6954e0ce2..349acc034 100644 --- a/src/tests/TestCrypt/TestCrypt.cpp +++ b/src/tests/TestCrypt/TestCrypt.cpp @@ -1,4 +1,4 @@ -// Copyright 2005-2020 The Mumble Developers. All rights reserved. +// Copyright 2007-2021 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . diff --git a/src/tests/TestCryptographicHash/TestCryptographicHash.cpp b/src/tests/TestCryptographicHash/TestCryptographicHash.cpp index c1bfce51a..555ba7ed9 100644 --- a/src/tests/TestCryptographicHash/TestCryptographicHash.cpp +++ b/src/tests/TestCryptographicHash/TestCryptographicHash.cpp @@ -1,4 +1,4 @@ -// Copyright 2005-2020 The Mumble Developers. All rights reserved. +// Copyright 2017-2021 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . diff --git a/src/tests/TestCryptographicRandom/TestCryptographicRandom.cpp b/src/tests/TestCryptographicRandom/TestCryptographicRandom.cpp index 1c6dcd1d7..6183093b8 100644 --- a/src/tests/TestCryptographicRandom/TestCryptographicRandom.cpp +++ b/src/tests/TestCryptographicRandom/TestCryptographicRandom.cpp @@ -1,4 +1,4 @@ -// Copyright 2005-2020 The Mumble Developers. All rights reserved. +// Copyright 2017-2021 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . diff --git a/src/tests/TestFFDHE/TestFFDHE.cpp b/src/tests/TestFFDHE/TestFFDHE.cpp index 926963ceb..da7f6fa6f 100644 --- a/src/tests/TestFFDHE/TestFFDHE.cpp +++ b/src/tests/TestFFDHE/TestFFDHE.cpp @@ -1,4 +1,4 @@ -// Copyright 2005-2020 The Mumble Developers. All rights reserved. +// Copyright 2017-2021 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . diff --git a/src/tests/TestLink.cpp b/src/tests/TestLink.cpp index 327f00cb6..10f1f6a28 100644 --- a/src/tests/TestLink.cpp +++ b/src/tests/TestLink.cpp @@ -1,3 +1,8 @@ +// Copyright 2008-2021 The Mumble Developers. All rights reserved. +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file at the root of the +// Mumble source tree or at . + /** * Test-/Exampleprogram which links against the Mumble link plugin to send * positional data. diff --git a/src/tests/TestPacketDataStream/TestPacketDataStream.cpp b/src/tests/TestPacketDataStream/TestPacketDataStream.cpp index 94ea14ab4..87506309f 100644 --- a/src/tests/TestPacketDataStream/TestPacketDataStream.cpp +++ b/src/tests/TestPacketDataStream/TestPacketDataStream.cpp @@ -1,4 +1,4 @@ -// Copyright 2005-2020 The Mumble Developers. All rights reserved. +// Copyright 2007-2021 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . diff --git a/src/tests/TestPasswordGenerator/TestPasswordGenerator.cpp b/src/tests/TestPasswordGenerator/TestPasswordGenerator.cpp index 6d7e80291..bc9bd1ed0 100644 --- a/src/tests/TestPasswordGenerator/TestPasswordGenerator.cpp +++ b/src/tests/TestPasswordGenerator/TestPasswordGenerator.cpp @@ -1,4 +1,4 @@ -// Copyright 2005-2020 The Mumble Developers. All rights reserved. +// Copyright 2017-2021 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . diff --git a/src/tests/TestSSLLocks/TestSSLLocks.cpp b/src/tests/TestSSLLocks/TestSSLLocks.cpp index 4aa430de0..a2c00c8d5 100644 --- a/src/tests/TestSSLLocks/TestSSLLocks.cpp +++ b/src/tests/TestSSLLocks/TestSSLLocks.cpp @@ -1,4 +1,4 @@ -// Copyright 2005-2020 The Mumble Developers. All rights reserved. +// Copyright 2017-2021 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . diff --git a/src/tests/TestSelfSignedCertificate/TestSelfSignedCertificate.cpp b/src/tests/TestSelfSignedCertificate/TestSelfSignedCertificate.cpp index b65d15f23..8bac45b34 100644 --- a/src/tests/TestSelfSignedCertificate/TestSelfSignedCertificate.cpp +++ b/src/tests/TestSelfSignedCertificate/TestSelfSignedCertificate.cpp @@ -1,4 +1,4 @@ -// Copyright 2005-2020 The Mumble Developers. All rights reserved. +// Copyright 2017-2021 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . diff --git a/src/tests/TestServerAddress/TestServerAddress.cpp b/src/tests/TestServerAddress/TestServerAddress.cpp index 3fb5656e9..e5e7f78c8 100644 --- a/src/tests/TestServerAddress/TestServerAddress.cpp +++ b/src/tests/TestServerAddress/TestServerAddress.cpp @@ -1,4 +1,4 @@ -// Copyright 2005-2020 The Mumble Developers. All rights reserved. +// Copyright 2017-2021 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . diff --git a/src/tests/TestServerResolver/TestServerResolver.cpp b/src/tests/TestServerResolver/TestServerResolver.cpp index d13619860..464ff5b35 100644 --- a/src/tests/TestServerResolver/TestServerResolver.cpp +++ b/src/tests/TestServerResolver/TestServerResolver.cpp @@ -1,4 +1,4 @@ -// Copyright 2005-2020 The Mumble Developers. All rights reserved. +// Copyright 2017-2021 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . diff --git a/src/tests/TestStdAbs/TestStdAbs.cpp b/src/tests/TestStdAbs/TestStdAbs.cpp index 1f572c3eb..378045d88 100644 --- a/src/tests/TestStdAbs/TestStdAbs.cpp +++ b/src/tests/TestStdAbs/TestStdAbs.cpp @@ -1,4 +1,4 @@ -// Copyright 2005-2020 The Mumble Developers. All rights reserved. +// Copyright 2017-2021 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . diff --git a/src/tests/TestTimer/TestTimer.cpp b/src/tests/TestTimer/TestTimer.cpp index 08dfb984f..848fb03a1 100644 --- a/src/tests/TestTimer/TestTimer.cpp +++ b/src/tests/TestTimer/TestTimer.cpp @@ -1,4 +1,4 @@ -// Copyright 2005-2020 The Mumble Developers. All rights reserved. +// Copyright 2007-2021 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . diff --git a/src/tests/TestUnresolvedServerAddress/TestUnresolvedServerAddress.cpp b/src/tests/TestUnresolvedServerAddress/TestUnresolvedServerAddress.cpp index 4ec0540c8..e3db7a06f 100644 --- a/src/tests/TestUnresolvedServerAddress/TestUnresolvedServerAddress.cpp +++ b/src/tests/TestUnresolvedServerAddress/TestUnresolvedServerAddress.cpp @@ -1,4 +1,4 @@ -// Copyright 2005-2020 The Mumble Developers. All rights reserved. +// Copyright 2017-2021 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . diff --git a/src/tests/TestXMLTools/TestXMLTools.cpp b/src/tests/TestXMLTools/TestXMLTools.cpp index 535cae0a7..de4e8b588 100644 --- a/src/tests/TestXMLTools/TestXMLTools.cpp +++ b/src/tests/TestXMLTools/TestXMLTools.cpp @@ -1,4 +1,4 @@ -// Copyright 2005-2020 The Mumble Developers. All rights reserved. +// Copyright 2017-2021 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . -- cgit v1.2.3