aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-11-24 11:55:16 +0100
committerLoïc Hoguin <[email protected]>2016-11-24 11:55:16 +0100
commitbfd3be14728975f4f9ce6ce48139513d7964f4e8 (patch)
tree8284e9088da17afb688da26affb7d1512f92d5e6
parent00f49368c5a7c7375e3f0a01b661d917d4546595 (diff)
downloadranch-bfd3be14728975f4f9ce6ce48139513d7964f4e8.tar.gz
ranch-bfd3be14728975f4f9ce6ce48139513d7964f4e8.tar.bz2
ranch-bfd3be14728975f4f9ce6ce48139513d7964f4e8.zip
Update copyright year
-rw-r--r--LICENSE2
-rw-r--r--examples/tcp_echo/relx.config2
-rw-r--r--src/ranch.erl2
-rw-r--r--src/ranch_acceptor.erl2
-rw-r--r--src/ranch_acceptors_sup.erl2
-rw-r--r--src/ranch_app.erl2
-rw-r--r--src/ranch_conns_sup.erl2
-rw-r--r--src/ranch_listener_sup.erl2
-rw-r--r--src/ranch_protocol.erl2
-rw-r--r--src/ranch_server.erl2
-rw-r--r--src/ranch_ssl.erl2
-rw-r--r--src/ranch_sup.erl2
-rw-r--r--src/ranch_tcp.erl2
-rw-r--r--src/ranch_transport.erl2
-rw-r--r--test/acceptor_SUITE.erl2
-rw-r--r--test/ranch_ct_hook.erl2
-rw-r--r--test/sendfile_SUITE.erl2
-rw-r--r--test/shutdown_SUITE.erl2
18 files changed, 18 insertions, 18 deletions
diff --git a/LICENSE b/LICENSE
index 4dda821..6db4aea 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2011-2015, Loïc Hoguin <[email protected]>
+Copyright (c) 2011-2016, 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/examples/tcp_echo/relx.config b/examples/tcp_echo/relx.config
index a850b71..5137ff7 100644
--- a/examples/tcp_echo/relx.config
+++ b/examples/tcp_echo/relx.config
@@ -1,2 +1,2 @@
-{release, {tcp_echo_example, "1"}, [tcp_echo]}.
+{release, {tcp_echo_example, "1"}, [tcp_echo, observer, wx, runtime_tools]}.
{extended_start_script, true}.
diff --git a/src/ranch.erl b/src/ranch.erl
index a219784..31c4761 100644
--- a/src/ranch.erl
+++ b/src/ranch.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2016, 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_acceptor.erl b/src/ranch_acceptor.erl
index e889ba4..34bedb7 100644
--- a/src/ranch_acceptor.erl
+++ b/src/ranch_acceptor.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2016, 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 d716a33..24cce2b 100644
--- a/src/ranch_acceptors_sup.erl
+++ b/src/ranch_acceptors_sup.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2016, 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_app.erl b/src/ranch_app.erl
index d972151..c3fa395 100644
--- a/src/ranch_app.erl
+++ b/src/ranch_app.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2016, 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 c448374..de20104 100644
--- a/src/ranch_conns_sup.erl
+++ b/src/ranch_conns_sup.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2016, 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_listener_sup.erl b/src/ranch_listener_sup.erl
index 2f697d6..7771fee 100644
--- a/src/ranch_listener_sup.erl
+++ b/src/ranch_listener_sup.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2016, 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 1f70962..e33a0ac 100644
--- a/src/ranch_protocol.erl
+++ b/src/ranch_protocol.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2012-2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2012-2016, 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 4aa858d..4ec4262 100644
--- a/src/ranch_server.erl
+++ b/src/ranch_server.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2012-2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2012-2016, 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_ssl.erl b/src/ranch_ssl.erl
index 0385065..0d278a9 100644
--- a/src/ranch_ssl.erl
+++ b/src/ranch_ssl.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2016, 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_sup.erl b/src/ranch_sup.erl
index e078fd7..0e69de6 100644
--- a/src/ranch_sup.erl
+++ b/src/ranch_sup.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2016, 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_tcp.erl b/src/ranch_tcp.erl
index c2ad148..536b5fe 100644
--- a/src/ranch_tcp.erl
+++ b/src/ranch_tcp.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2016, 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_transport.erl b/src/ranch_transport.erl
index 873bffe..279653b 100644
--- a/src/ranch_transport.erl
+++ b/src/ranch_transport.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2012-2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2012-2016, 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/acceptor_SUITE.erl b/test/acceptor_SUITE.erl
index 4b6f022..a60f284 100644
--- a/test/acceptor_SUITE.erl
+++ b/test/acceptor_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2011-2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2011-2016, 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 c26850e..5e1e8fb 100644
--- a/test/ranch_ct_hook.erl
+++ b/test/ranch_ct_hook.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2015-2016, 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/sendfile_SUITE.erl b/test/sendfile_SUITE.erl
index c6c9524..fa8e843 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, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2015-2016, 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 212d14c..e62a1a9 100644
--- a/test/shutdown_SUITE.erl
+++ b/test/shutdown_SUITE.erl
@@ -1,4 +1,4 @@
-%% Copyright (c) 2013-2015, Loïc Hoguin <[email protected]>
+%% Copyright (c) 2013-2016, 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