aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ranch.erl3
-rw-r--r--src/ranch_acceptor.erl2
-rw-r--r--src/ranch_acceptors_sup.erl3
-rw-r--r--src/ranch_app.erl2
-rw-r--r--src/ranch_conns_sup.erl2
-rw-r--r--src/ranch_conns_sup_sup.erl2
-rw-r--r--src/ranch_crc32c.erl2
-rw-r--r--src/ranch_embedded_sup.erl2
-rw-r--r--src/ranch_listener_sup.erl2
-rw-r--r--src/ranch_protocol.erl2
-rw-r--r--src/ranch_proxy_header.erl2
-rw-r--r--src/ranch_server.erl3
-rw-r--r--src/ranch_server_proxy.erl2
-rw-r--r--src/ranch_ssl.erl3
-rw-r--r--src/ranch_sup.erl3
-rw-r--r--src/ranch_tcp.erl3
-rw-r--r--src/ranch_transport.erl3
17 files changed, 24 insertions, 17 deletions
diff --git a/src/ranch.erl b/src/ranch.erl
index 7a03ef2..4adb1d8 100644
--- a/src/ranch.erl
+++ b/src/ranch.erl
@@ -1,4 +1,5 @@
-%% Copyright (c) 2011-2018, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020, 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_acceptor.erl b/src/ranch_acceptor.erl
index c90d877..955b9f7 100644
--- a/src/ranch_acceptor.erl
+++ b/src/ranch_acceptor.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2018, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2020, 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 f6f26c7..801fec5 100644
--- a/src/ranch_acceptors_sup.erl
+++ b/src/ranch_acceptors_sup.erl
@@ -1,4 +1,5 @@
-%% Copyright (c) 2011-2018, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020, 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 8069239..6203140 100644
--- a/src/ranch_app.erl
+++ b/src/ranch_app.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2018, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2020, 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 b87a7bb..ca2682d 100644
--- a/src/ranch_conns_sup.erl
+++ b/src/ranch_conns_sup.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2018, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2020, 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_sup.erl b/src/ranch_conns_sup_sup.erl
index 61ace8e..11e62cd 100644
--- a/src/ranch_conns_sup_sup.erl
+++ b/src/ranch_conns_sup_sup.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019, Jan Uhlig <[email protected]>
+%% Copyright (c) 2019-2020, 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 fc9be35..e07fd0a 100644
--- a/src/ranch_crc32c.erl
+++ b/src/ranch_crc32c.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2018, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2018-2020, 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 ba5b46d..bb048f9 100644
--- a/src/ranch_embedded_sup.erl
+++ b/src/ranch_embedded_sup.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019, Jan Uhlig <[email protected]>
+%% Copyright (c) 2019-2020, 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 393099f..e337907 100644
--- a/src/ranch_listener_sup.erl
+++ b/src/ranch_listener_sup.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2018, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2020, 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 5a93a65..bcc57c2 100644
--- a/src/ranch_protocol.erl
+++ b/src/ranch_protocol.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2012-2018, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2012-2020, 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 081157f..ed0a380 100644
--- a/src/ranch_proxy_header.erl
+++ b/src/ranch_proxy_header.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2018, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2018-2020, 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 7bf8a96..bff7c80 100644
--- a/src/ranch_server.erl
+++ b/src/ranch_server.erl
@@ -1,4 +1,5 @@
-%% Copyright (c) 2012-2018, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2012-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020, 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 b03b5bb..887ab3d 100644
--- a/src/ranch_server_proxy.erl
+++ b/src/ranch_server_proxy.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2019, Jan Uhlig <[email protected]>
+%% Copyright (c) 2019-2020, 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 2c35c97..090f43c 100644
--- a/src/ranch_ssl.erl
+++ b/src/ranch_ssl.erl
@@ -1,4 +1,5 @@
-%% Copyright (c) 2011-2018, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020, 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_sup.erl b/src/ranch_sup.erl
index 481088a..c779ef6 100644
--- a/src/ranch_sup.erl
+++ b/src/ranch_sup.erl
@@ -1,4 +1,5 @@
-%% Copyright (c) 2011-2018, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020, 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 28d221c..41f59c9 100644
--- a/src/ranch_tcp.erl
+++ b/src/ranch_tcp.erl
@@ -1,4 +1,5 @@
-%% Copyright (c) 2011-2018, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020, 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 23d9d5c..60ef175 100644
--- a/src/ranch_transport.erl
+++ b/src/ranch_transport.erl
@@ -1,4 +1,5 @@
-%% Copyright (c) 2012-2018, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2012-2020, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2020, 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