From 36f3f56bb7d4dd4aa5498fd0b7b5069ab3ef137f Mon Sep 17 00:00:00 2001 From: William Yang Date: Tue, 28 May 2024 10:18:48 +0200 Subject: [PATCH] chore: update copyright 2024 --- c_src/quicer_config.c | 2 +- c_src/quicer_config.h | 2 +- c_src/quicer_connection.c | 2 +- c_src/quicer_connection.h | 2 +- c_src/quicer_ctx.c | 2 +- c_src/quicer_ctx.h | 2 +- c_src/quicer_dgram.c | 2 +- c_src/quicer_dgram.h | 2 +- c_src/quicer_eterms.h | 2 +- c_src/quicer_internal.h | 2 +- c_src/quicer_listener.c | 2 +- c_src/quicer_listener.h | 2 +- c_src/quicer_nif.c | 2 +- c_src/quicer_nif.h | 2 +- c_src/quicer_queue.c | 2 +- c_src/quicer_queue.h | 2 +- c_src/quicer_reg.c | 2 +- c_src/quicer_reg.h | 2 +- c_src/quicer_stream.c | 2 +- c_src/quicer_stream.h | 2 +- c_src/quicer_tls.c | 2 +- c_src/quicer_tls.h | 2 +- include/quicer.hrl | 2 +- include/quicer_types.hrl | 2 +- include/quicer_vsn.hrl | 2 +- src/quicer.erl | 2 +- src/quicer_app.erl | 2 +- src/quicer_conn_acceptor_sup.erl | 2 +- src/quicer_connection.erl | 2 +- src/quicer_lib.erl | 2 +- src/quicer_listener.erl | 2 +- src/quicer_listener_sup.erl | 2 +- src/quicer_local_stream.erl | 2 +- src/quicer_nif.erl | 2 +- src/quicer_remote_stream.erl | 2 +- src/quicer_server_conn_callback.erl | 2 +- src/quicer_stream.erl | 2 +- src/quicer_sup.erl | 2 +- templates/quicer_vsn.h.in | 2 +- templates/quicer_vsn.hrl.in | 2 +- test/example_client_connection.erl | 2 +- test/example_client_stream.erl | 2 +- test/example_server_connection.erl | 2 +- test/example_server_stream.erl | 2 +- test/prop_stream_sig_queue.erl | 16 ++++++++++++++++ test/quicer_SUITE.erl | 2 +- test/quicer_connection_SUITE.erl | 2 +- test/quicer_echo_server_stream_callback.erl | 2 +- test/quicer_listener_SUITE.erl | 2 +- test/quicer_reg_SUITE.erl | 2 +- test/quicer_snb_SUITE.erl | 2 +- test/quicer_test_lib.erl | 2 +- test/quicer_upgrade_SUITE.erl | 2 +- 53 files changed, 68 insertions(+), 52 deletions(-) diff --git a/c_src/quicer_config.c b/c_src/quicer_config.c index 95f31bc3..53457af8 100644 --- a/c_src/quicer_config.c +++ b/c_src/quicer_config.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_config.h b/c_src/quicer_config.h index 1c9b398c..3ffef943 100644 --- a/c_src/quicer_config.h +++ b/c_src/quicer_config.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_connection.c b/c_src/quicer_connection.c index 5e58be8c..ae1b4540 100644 --- a/c_src/quicer_connection.c +++ b/c_src/quicer_connection.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_connection.h b/c_src/quicer_connection.h index f5e4d6dd..c8d3517a 100644 --- a/c_src/quicer_connection.h +++ b/c_src/quicer_connection.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_ctx.c b/c_src/quicer_ctx.c index 20e9f6bb..26d74a5b 100644 --- a/c_src/quicer_ctx.c +++ b/c_src/quicer_ctx.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_ctx.h b/c_src/quicer_ctx.h index 5d5aa32d..51a25135 100644 --- a/c_src/quicer_ctx.h +++ b/c_src/quicer_ctx.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_dgram.c b/c_src/quicer_dgram.c index 214c8e84..7c87aba6 100644 --- a/c_src/quicer_dgram.c +++ b/c_src/quicer_dgram.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_dgram.h b/c_src/quicer_dgram.h index dabb50d5..72cb6dc5 100644 --- a/c_src/quicer_dgram.h +++ b/c_src/quicer_dgram.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_eterms.h b/c_src/quicer_eterms.h index bfbfcdba..2da1adfc 100644 --- a/c_src/quicer_eterms.h +++ b/c_src/quicer_eterms.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_internal.h b/c_src/quicer_internal.h index 36e70892..cab21754 100644 --- a/c_src/quicer_internal.h +++ b/c_src/quicer_internal.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_listener.c b/c_src/quicer_listener.c index 8da6c0e9..c13ee2bf 100644 --- a/c_src/quicer_listener.c +++ b/c_src/quicer_listener.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_listener.h b/c_src/quicer_listener.h index f269305a..2100af89 100644 --- a/c_src/quicer_listener.h +++ b/c_src/quicer_listener.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_nif.c b/c_src/quicer_nif.c index 0331ec5e..98fd259c 100644 --- a/c_src/quicer_nif.c +++ b/c_src/quicer_nif.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_nif.h b/c_src/quicer_nif.h index b7ed558f..f76c2a2d 100644 --- a/c_src/quicer_nif.h +++ b/c_src/quicer_nif.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_queue.c b/c_src/quicer_queue.c index 45a5d26e..2f37f9dc 100644 --- a/c_src/quicer_queue.c +++ b/c_src/quicer_queue.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_queue.h b/c_src/quicer_queue.h index bdde42f7..96324a7c 100644 --- a/c_src/quicer_queue.h +++ b/c_src/quicer_queue.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_reg.c b/c_src/quicer_reg.c index 13ba104a..c33ee2a4 100644 --- a/c_src/quicer_reg.c +++ b/c_src/quicer_reg.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2023 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2023-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_reg.h b/c_src/quicer_reg.h index 9fe6eaa2..dc6e0b56 100644 --- a/c_src/quicer_reg.h +++ b/c_src/quicer_reg.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2023 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2023-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_stream.c b/c_src/quicer_stream.c index 9576f5fa..2b5c34f1 100644 --- a/c_src/quicer_stream.c +++ b/c_src/quicer_stream.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_stream.h b/c_src/quicer_stream.h index eda43d10..56b03ff2 100644 --- a/c_src/quicer_stream.h +++ b/c_src/quicer_stream.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_tls.c b/c_src/quicer_tls.c index eeb812fe..a09653d2 100644 --- a/c_src/quicer_tls.c +++ b/c_src/quicer_tls.c @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2023 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2023-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/c_src/quicer_tls.h b/c_src/quicer_tls.h index 90636b30..f4b41925 100644 --- a/c_src/quicer_tls.h +++ b/c_src/quicer_tls.h @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2023 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2023-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/include/quicer.hrl b/include/quicer.hrl index 0ff03bf0..ea4788dc 100644 --- a/include/quicer.hrl +++ b/include/quicer.hrl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2020-2021 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2020-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/include/quicer_types.hrl b/include/quicer_types.hrl index a282aeea..2b38262d 100644 --- a/include/quicer_types.hrl +++ b/include/quicer_types.hrl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2020-2021 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2020-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/include/quicer_vsn.hrl b/include/quicer_vsn.hrl index d5eaca10..d734b2d8 100644 --- a/include/quicer_vsn.hrl +++ b/include/quicer_vsn.hrl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2023 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2023-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/quicer.erl b/src/quicer.erl index 2e4fed89..5e489d11 100644 --- a/src/quicer.erl +++ b/src/quicer.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2020-2021 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2020-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/quicer_app.erl b/src/quicer_app.erl index f95e07f9..ad02c1fa 100644 --- a/src/quicer_app.erl +++ b/src/quicer_app.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/quicer_conn_acceptor_sup.erl b/src/quicer_conn_acceptor_sup.erl index ff4e432c..8953d265 100644 --- a/src/quicer_conn_acceptor_sup.erl +++ b/src/quicer_conn_acceptor_sup.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2020 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2020-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/quicer_connection.erl b/src/quicer_connection.erl index f705177e..bb354717 100644 --- a/src/quicer_connection.erl +++ b/src/quicer_connection.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2021-2022 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/quicer_lib.erl b/src/quicer_lib.erl index 5a3b7a23..90cdbade 100644 --- a/src/quicer_lib.erl +++ b/src/quicer_lib.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2022 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2022-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/quicer_listener.erl b/src/quicer_listener.erl index 39abb770..054e605a 100644 --- a/src/quicer_listener.erl +++ b/src/quicer_listener.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/quicer_listener_sup.erl b/src/quicer_listener_sup.erl index 10a3c35a..98440099 100644 --- a/src/quicer_listener_sup.erl +++ b/src/quicer_listener_sup.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/quicer_local_stream.erl b/src/quicer_local_stream.erl index 23dad414..ff78eb5e 100644 --- a/src/quicer_local_stream.erl +++ b/src/quicer_local_stream.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2023 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2023-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/quicer_nif.erl b/src/quicer_nif.erl index edc89784..cae58c66 100644 --- a/src/quicer_nif.erl +++ b/src/quicer_nif.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2020-2021 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2020-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/quicer_remote_stream.erl b/src/quicer_remote_stream.erl index 2fd16001..f72c33e1 100644 --- a/src/quicer_remote_stream.erl +++ b/src/quicer_remote_stream.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2023 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2023-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/quicer_server_conn_callback.erl b/src/quicer_server_conn_callback.erl index d2edc78b..8e81a66d 100644 --- a/src/quicer_server_conn_callback.erl +++ b/src/quicer_server_conn_callback.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2020-2022 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2020-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/quicer_stream.erl b/src/quicer_stream.erl index 3abbe6ea..72ed74a3 100644 --- a/src/quicer_stream.erl +++ b/src/quicer_stream.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/quicer_sup.erl b/src/quicer_sup.erl index 530b9a6d..fbaeeace 100644 --- a/src/quicer_sup.erl +++ b/src/quicer_sup.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/templates/quicer_vsn.h.in b/templates/quicer_vsn.h.in index ae953305..22536b82 100644 --- a/templates/quicer_vsn.h.in +++ b/templates/quicer_vsn.h.in @@ -1,5 +1,5 @@ /*-------------------------------------------------------------------- -Copyright (c) 2023 EMQ Technologies Co., Ltd. All Rights Reserved. +Copyright (c) 2023-2024 EMQ Technologies Co., Ltd. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/templates/quicer_vsn.hrl.in b/templates/quicer_vsn.hrl.in index db73c6ad..46e9ef49 100644 --- a/templates/quicer_vsn.hrl.in +++ b/templates/quicer_vsn.hrl.in @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2023 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2023-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/example_client_connection.erl b/test/example_client_connection.erl index 7f34d3fd..2fd90cd9 100644 --- a/test/example_client_connection.erl +++ b/test/example_client_connection.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2022 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2022-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/example_client_stream.erl b/test/example_client_stream.erl index 5bd38304..91c22ebe 100644 --- a/test/example_client_stream.erl +++ b/test/example_client_stream.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2022 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2022-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/example_server_connection.erl b/test/example_server_connection.erl index 02e00e1f..d63a338d 100644 --- a/test/example_server_connection.erl +++ b/test/example_server_connection.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2022 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2022-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/example_server_stream.erl b/test/example_server_stream.erl index c3d4589a..af00f9cb 100644 --- a/test/example_server_stream.erl +++ b/test/example_server_stream.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2022 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2022-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/prop_stream_sig_queue.erl b/test/prop_stream_sig_queue.erl index b8bd67e8..76898609 100644 --- a/test/prop_stream_sig_queue.erl +++ b/test/prop_stream_sig_queue.erl @@ -1,3 +1,19 @@ +%%-------------------------------------------------------------------- +%% Copyright (c) 2024 EMQ Technologies Co., Ltd. All Rights Reserved. +%% +%% Licensed under the Apache License, Version 2.0 (the "License"); +%% you may not use this file except in compliance with the License. +%% You may obtain a copy of the License at +%% +%% http://www.apache.org/licenses/LICENSE-2.0 +%% +%% Unless required by applicable law or agreed to in writing, software +%% distributed under the License is distributed on an "AS IS" BASIS, +%% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +%% See the License for the specific language governing permissions and +%% limitations under the License. +%%-------------------------------------------------------------------- + -module(prop_stream_sig_queue). -include_lib("proper/include/proper.hrl"). -include_lib("quicer/include/quicer_types.hrl"). diff --git a/test/quicer_SUITE.erl b/test/quicer_SUITE.erl index 556c1069..4e48801a 100644 --- a/test/quicer_SUITE.erl +++ b/test/quicer_SUITE.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2020-2021 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2020-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/quicer_connection_SUITE.erl b/test/quicer_connection_SUITE.erl index 60019c74..e72a7284 100644 --- a/test/quicer_connection_SUITE.erl +++ b/test/quicer_connection_SUITE.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2023 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2023-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/quicer_echo_server_stream_callback.erl b/test/quicer_echo_server_stream_callback.erl index f8d5d613..f9468d3e 100644 --- a/test/quicer_echo_server_stream_callback.erl +++ b/test/quicer_echo_server_stream_callback.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2021 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2021-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/quicer_listener_SUITE.erl b/test/quicer_listener_SUITE.erl index 8825d016..7cc67f3f 100644 --- a/test/quicer_listener_SUITE.erl +++ b/test/quicer_listener_SUITE.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2023 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2023-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/quicer_reg_SUITE.erl b/test/quicer_reg_SUITE.erl index e4f1185a..cc037fd7 100644 --- a/test/quicer_reg_SUITE.erl +++ b/test/quicer_reg_SUITE.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2023 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2023-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/quicer_snb_SUITE.erl b/test/quicer_snb_SUITE.erl index 12b092bf..7795f5e3 100644 --- a/test/quicer_snb_SUITE.erl +++ b/test/quicer_snb_SUITE.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2020-2021 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2020-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/quicer_test_lib.erl b/test/quicer_test_lib.erl index 141db8db..5d8a280b 100644 --- a/test/quicer_test_lib.erl +++ b/test/quicer_test_lib.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2020-2021 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2020-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/quicer_upgrade_SUITE.erl b/test/quicer_upgrade_SUITE.erl index bc87d7c2..c1399f10 100644 --- a/test/quicer_upgrade_SUITE.erl +++ b/test/quicer_upgrade_SUITE.erl @@ -1,5 +1,5 @@ %%-------------------------------------------------------------------- -%% Copyright (c) 2023 EMQ Technologies Co., Ltd. All Rights Reserved. +%% Copyright (c) 2023-2024 EMQ Technologies Co., Ltd. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License.