diff options
author | Loïc Hoguin <[email protected]> | 2025-02-14 12:26:55 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2025-02-14 12:35:34 +0100 |
commit | 83fe0e0ef0cb2aaebce46500f3de399e21f5ce1f (patch) | |
tree | dc4b8b872c8223a4674b44856c98166635dd966c | |
parent | 536aa68ce51354de775f875dd49109ae6fa3a9cb (diff) | |
download | ranch-83fe0e0ef0cb2aaebce46500f3de399e21f5ce1f.tar.gz ranch-83fe0e0ef0cb2aaebce46500f3de399e21f5ce1f.tar.bz2 ranch-83fe0e0ef0cb2aaebce46500f3de399e21f5ce1f.zip |
Remove copyright years from all files except LICENSE
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | src/ranch.erl | 6 | ||||
-rw-r--r-- | src/ranch_acceptor.erl | 2 | ||||
-rw-r--r-- | src/ranch_acceptors_sup.erl | 4 | ||||
-rw-r--r-- | src/ranch_app.erl | 2 | ||||
-rw-r--r-- | src/ranch_conns_sup.erl | 4 | ||||
-rw-r--r-- | src/ranch_conns_sup_sup.erl | 2 | ||||
-rw-r--r-- | src/ranch_crc32c.erl | 2 | ||||
-rw-r--r-- | src/ranch_embedded_sup.erl | 2 | ||||
-rw-r--r-- | src/ranch_listener_sup.erl | 2 | ||||
-rw-r--r-- | src/ranch_protocol.erl | 2 | ||||
-rw-r--r-- | src/ranch_proxy_header.erl | 2 | ||||
-rw-r--r-- | src/ranch_server.erl | 4 | ||||
-rw-r--r-- | src/ranch_server_proxy.erl | 2 | ||||
-rw-r--r-- | src/ranch_ssl.erl | 6 | ||||
-rw-r--r-- | src/ranch_sup.erl | 4 | ||||
-rw-r--r-- | src/ranch_tcp.erl | 4 | ||||
-rw-r--r-- | src/ranch_transport.erl | 4 | ||||
-rw-r--r-- | test/acceptor_SUITE.erl | 6 | ||||
-rw-r--r-- | test/proxy_header_SUITE.erl | 2 | ||||
-rw-r--r-- | test/ranch_concuerror.erl | 2 | ||||
-rw-r--r-- | test/ranch_ct_hook.erl | 2 | ||||
-rw-r--r-- | test/ranch_erlang_transport.erl | 2 | ||||
-rw-r--r-- | test/ranch_listen_error_transport.erl | 2 | ||||
-rw-r--r-- | test/sendfile_SUITE.erl | 4 | ||||
-rw-r--r-- | test/shutdown_SUITE.erl | 2 | ||||
-rw-r--r-- | test/stampede_SUITE.erl | 2 | ||||
-rw-r--r-- | test/upgrade_SUITE.erl | 4 |
29 files changed, 44 insertions, 42 deletions
@@ -1,4 +1,4 @@ -Copyright (c) 2011-2021, Loïc Hoguin <[email protected]> +Copyright (c) 2011-2025, Loïc Hoguin <[email protected]> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -92,6 +92,8 @@ prepare_tag: $(verbose) grep -m1 {\" src/$(PROJECT).appup $(verbose) echo -n "GUIDE: " $(verbose) grep -h dep_$(PROJECT)_commit doc/src/guide/*.asciidoc || true + $(verbose) echo ; echo + $(verbose) echo -n "LICENSE: " ; head -n1 LICENSE $(verbose) echo $(verbose) echo "Dependencies:" $(verbose) grep ^DEPS Makefile || echo "DEPS =" diff --git a/src/ranch.erl b/src/ranch.erl index 295e103..6a58a03 100644 --- a/src/ranch.erl +++ b/src/ranch.erl @@ -1,6 +1,6 @@ -%% Copyright (c) 2011-2021, Loïc Hoguin <[email protected]> -%% Copyright (c) 2020-2021, Jan Uhlig <[email protected]> -%% Copyright (c) 2021, Maria Scott <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> +%% Copyright (c) Jan Uhlig <[email protected]> +%% Copyright (c) Maria Scott <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_acceptor.erl b/src/ranch_acceptor.erl index 7d684cd..92cb2f0 100644 --- a/src/ranch_acceptor.erl +++ b/src/ranch_acceptor.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2011-2021, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_acceptors_sup.erl b/src/ranch_acceptors_sup.erl index a49b81b..064f283 100644 --- a/src/ranch_acceptors_sup.erl +++ b/src/ranch_acceptors_sup.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2011-2021, Loïc Hoguin <[email protected]> -%% Copyright (c) 2020-2021, Jan Uhlig <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> +%% Copyright (c) Jan Uhlig <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_app.erl b/src/ranch_app.erl index f6aeb26..3d70e8c 100644 --- a/src/ranch_app.erl +++ b/src/ranch_app.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2011-2021, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_conns_sup.erl b/src/ranch_conns_sup.erl index f142f41..79b40fa 100644 --- a/src/ranch_conns_sup.erl +++ b/src/ranch_conns_sup.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2011-2021, Loïc Hoguin <[email protected]> -%% Copyright (c) 2021, Maria Scott <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> +%% Copyright (c) Maria Scott <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_conns_sup_sup.erl b/src/ranch_conns_sup_sup.erl index c532cec..ee97585 100644 --- a/src/ranch_conns_sup_sup.erl +++ b/src/ranch_conns_sup_sup.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2021, Jan Uhlig <[email protected]> +%% Copyright (c) Jan Uhlig <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_crc32c.erl b/src/ranch_crc32c.erl index 9512b87..e23ec80 100644 --- a/src/ranch_crc32c.erl +++ b/src/ranch_crc32c.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2018-2021, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_embedded_sup.erl b/src/ranch_embedded_sup.erl index f9f8d61..49cb519 100644 --- a/src/ranch_embedded_sup.erl +++ b/src/ranch_embedded_sup.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2021, Jan Uhlig <[email protected]> +%% Copyright (c) Jan Uhlig <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_listener_sup.erl b/src/ranch_listener_sup.erl index b33e42d..8691be8 100644 --- a/src/ranch_listener_sup.erl +++ b/src/ranch_listener_sup.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2011-2021, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_protocol.erl b/src/ranch_protocol.erl index 4562348..adae47a 100644 --- a/src/ranch_protocol.erl +++ b/src/ranch_protocol.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2012-2021, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_proxy_header.erl b/src/ranch_proxy_header.erl index 3f282d2..ad6a470 100644 --- a/src/ranch_proxy_header.erl +++ b/src/ranch_proxy_header.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2018-2021, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_server.erl b/src/ranch_server.erl index 3966c1b..060d6ed 100644 --- a/src/ranch_server.erl +++ b/src/ranch_server.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2012-2021, Loïc Hoguin <[email protected]> -%% Copyright (c) 2020-2021, Jan Uhlig <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> +%% Copyright (c) Jan Uhlig <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_server_proxy.erl b/src/ranch_server_proxy.erl index 22f9dc8..3880cc3 100644 --- a/src/ranch_server_proxy.erl +++ b/src/ranch_server_proxy.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2021, Jan Uhlig <[email protected]> +%% Copyright (c) Jan Uhlig <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_ssl.erl b/src/ranch_ssl.erl index 0ae8764..aa70357 100644 --- a/src/ranch_ssl.erl +++ b/src/ranch_ssl.erl @@ -1,6 +1,6 @@ -%% Copyright (c) 2011-2021, Loïc Hoguin <[email protected]> -%% Copyright (c) 2020-2021, Jan Uhlig <[email protected]> -%% Copyright (c) 2021, Maria Scott <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> +%% Copyright (c) Jan Uhlig <[email protected]> +%% Copyright (c) Maria Scott <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_sup.erl b/src/ranch_sup.erl index 15b8b81..a974216 100644 --- a/src/ranch_sup.erl +++ b/src/ranch_sup.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2011-2021, Loïc Hoguin <[email protected]> -%% Copyright (c) 2020-2021, Jan Uhlig <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> +%% Copyright (c) Jan Uhlig <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_tcp.erl b/src/ranch_tcp.erl index 70e9f46..4066820 100644 --- a/src/ranch_tcp.erl +++ b/src/ranch_tcp.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2011-2021, Loïc Hoguin <[email protected]> -%% Copyright (c) 2020-2021, Jan Uhlig <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> +%% Copyright (c) Jan Uhlig <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/src/ranch_transport.erl b/src/ranch_transport.erl index 2fbcc1a..9c7e31a 100644 --- a/src/ranch_transport.erl +++ b/src/ranch_transport.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2012-2021, Loïc Hoguin <[email protected]> -%% Copyright (c) 2020-2021, Jan Uhlig <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> +%% Copyright (c) Jan Uhlig <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/test/acceptor_SUITE.erl b/test/acceptor_SUITE.erl index 85fde04..30969f7 100644 --- a/test/acceptor_SUITE.erl +++ b/test/acceptor_SUITE.erl @@ -1,6 +1,6 @@ -%% Copyright (c) 2011-2021, Loïc Hoguin <[email protected]> -%% Copyright (c) 2020-2021, Jan Uhlig <[email protected]> -%% Copyright (c) 2021, Maria Scott <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> +%% Copyright (c) Jan Uhlig <[email protected]> +%% Copyright (c) Maria Scott <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/test/proxy_header_SUITE.erl b/test/proxy_header_SUITE.erl index c736611..59cc34f 100644 --- a/test/proxy_header_SUITE.erl +++ b/test/proxy_header_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2018-2021, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/test/ranch_concuerror.erl b/test/ranch_concuerror.erl index 0834c6f..32bc5ad 100644 --- a/test/ranch_concuerror.erl +++ b/test/ranch_concuerror.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2020-2021, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/test/ranch_ct_hook.erl b/test/ranch_ct_hook.erl index 8dc0f9b..9ce009a 100644 --- a/test/ranch_ct_hook.erl +++ b/test/ranch_ct_hook.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2015-2021, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/test/ranch_erlang_transport.erl b/test/ranch_erlang_transport.erl index 4bb999c..581a47f 100644 --- a/test/ranch_erlang_transport.erl +++ b/test/ranch_erlang_transport.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2020-2021, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/test/ranch_listen_error_transport.erl b/test/ranch_listen_error_transport.erl index 51cb64e..9465776 100644 --- a/test/ranch_listen_error_transport.erl +++ b/test/ranch_listen_error_transport.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2024, Jan Uhlig <[email protected]> +%% Copyright (c) Jan Uhlig <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/test/sendfile_SUITE.erl b/test/sendfile_SUITE.erl index 30e89e3..4641c74 100644 --- a/test/sendfile_SUITE.erl +++ b/test/sendfile_SUITE.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2013, James Fish <[email protected]> -%% Copyright (c) 2015-2021, Loïc Hoguin <[email protected]> +%% Copyright (c) James Fish <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/test/shutdown_SUITE.erl b/test/shutdown_SUITE.erl index f75ec68..392b734 100644 --- a/test/shutdown_SUITE.erl +++ b/test/shutdown_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2013-2021, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/test/stampede_SUITE.erl b/test/stampede_SUITE.erl index 58b55f6..d7bceab 100644 --- a/test/stampede_SUITE.erl +++ b/test/stampede_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2021, Loïc Hoguin <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above diff --git a/test/upgrade_SUITE.erl b/test/upgrade_SUITE.erl index e325f2e..f8dc980 100644 --- a/test/upgrade_SUITE.erl +++ b/test/upgrade_SUITE.erl @@ -1,5 +1,5 @@ -%% Copyright (c) 2020-2021, Loïc Hoguin <[email protected]> -%% Copyright (c) 2021, Maria Scott <[email protected]> +%% Copyright (c) Loïc Hoguin <[email protected]> +%% Copyright (c) Maria Scott <[email protected]> %% %% Permission to use, copy, modify, and/or distribute this software for any %% purpose with or without fee is hereby granted, provided that the above |