diff options
-rw-r--r-- | LICENSE | 31 | ||||
-rw-r--r-- | ebin/catlfish.app | 3 | ||||
-rw-r--r-- | httpd_props.conf | 2 | ||||
-rw-r--r-- | src/catlfish.erl | 3 | ||||
-rw-r--r-- | src/https_server.erl | 3 | ||||
-rw-r--r-- | src/v1.erl | 3 | ||||
-rw-r--r-- | test/catlfish_test.erl | 3 |
7 files changed, 48 insertions, 0 deletions
@@ -0,0 +1,31 @@ +Catlfish is distributed under this license: + +Copyright (c) 2014, NORDUnet A/S + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + +* Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with distribution. + +* Neither the name of the copyright holders nor the names of the + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS +OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR +TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE +USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. diff --git a/ebin/catlfish.app b/ebin/catlfish.app index 33d7050..b93ac6d 100644 --- a/ebin/catlfish.app +++ b/ebin/catlfish.app @@ -1,3 +1,6 @@ +%%% Copyright (c) 2014, NORDUnet A/S. +%%% See LICENSE for licensing information. + %% Application resource file for catlfish (in -*- erlang -*- mode). %% Point out the proper configuration file (-config catlfish) when %% starting beam. diff --git a/httpd_props.conf b/httpd_props.conf index 967c082..16ec0d3 100644 --- a/httpd_props.conf +++ b/httpd_props.conf @@ -1,3 +1,5 @@ +%%% Copyright (c) 2014, NORDUnet A/S. +%%% See LICENSE for licensing information. [ {port, 8080}, {bind_address, {127, 0, 0, 1}}, diff --git a/src/catlfish.erl b/src/catlfish.erl index 015d8b4..ad99f78 100644 --- a/src/catlfish.erl +++ b/src/catlfish.erl @@ -1,3 +1,6 @@ +%%% Copyright (c) 2014, NORDUnet A/S. +%%% See LICENSE for licensing information. + %% This is a CA transparency log. %% In order to find https_server and other required modules, a couple diff --git a/src/https_server.erl b/src/https_server.erl index 47b4465..465d77b 100644 --- a/src/https_server.erl +++ b/src/https_server.erl @@ -1,3 +1,6 @@ +%%% Copyright (c) 2014, NORDUnet A/S. +%%% See LICENSE for licensing information. + -module(https_server). -export([start/0, stop/1]). @@ -1,3 +1,6 @@ +%%% Copyright (c) 2014, NORDUnet A/S. +%%% See LICENSE for licensing information. + %%% @doc Certificate Transparency (RFC 6962) -module(v1). diff --git a/test/catlfish_test.erl b/test/catlfish_test.erl index 5782984..b098cc1 100644 --- a/test/catlfish_test.erl +++ b/test/catlfish_test.erl @@ -1,3 +1,6 @@ +%%% Copyright (c) 2014, NORDUnet A/S. +%%% See LICENSE for licensing information. + -module(catlfish_test). -include_lib("eunit/include/eunit.hrl"). |