diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-05-02 21:40:01 +0200 |
---|---|---|
committer | Samuel Holland <samuel@sholland.org> | 2018-05-03 19:15:09 -0500 |
commit | f77eac6796e6346b1cbd808fd8e28930b973c0e3 (patch) | |
tree | f154e698e2c2ae7b688643e416fabd9e7ae7920c /app/tools | |
parent | e8d8d5dc29255fe72844e60d578c67394fa2031a (diff) |
global: fix up copyrights
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app/tools')
-rw-r--r-- | app/tools/CMakeLists.txt | 4 | ||||
-rw-r--r-- | app/tools/libwg-go/Makefile | 4 | ||||
-rw-r--r-- | app/tools/libwg-go/api-android.go | 5 | ||||
-rw-r--r-- | app/tools/libwg-go/jni.c | 5 | ||||
-rw-r--r-- | app/tools/wg-quick.c | 2 |
5 files changed, 19 insertions, 1 deletions
diff --git a/app/tools/CMakeLists.txt b/app/tools/CMakeLists.txt index 4cf030bf..986ca61a 100644 --- a/app/tools/CMakeLists.txt +++ b/app/tools/CMakeLists.txt @@ -1,3 +1,7 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# +# Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + cmake_minimum_required(VERSION 3.4.1) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}") diff --git a/app/tools/libwg-go/Makefile b/app/tools/libwg-go/Makefile index 8c397bc2..8c97b9d0 100644 --- a/app/tools/libwg-go/Makefile +++ b/app/tools/libwg-go/Makefile @@ -1,3 +1,7 @@ +# SPDX-License-Identifier: GPL-2.0 +# +# Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + containing = $(foreach v,$2,$(if $(findstring $1,$v),$v)) FILES := $(wildcard ../wireguard-go/*/*.go) $(wildcard ../wireguard-go/*.go) FILES := $(filter-out %/main.go $(filter-out %_linux.go,$(call containing,_,$(FILES))),$(FILES)) diff --git a/app/tools/libwg-go/api-android.go b/app/tools/libwg-go/api-android.go index 2e20884d..63551512 100644 --- a/app/tools/libwg-go/api-android.go +++ b/app/tools/libwg-go/api-android.go @@ -1,3 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later + * + * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + */ + package main // #cgo LDFLAGS: -llog diff --git a/app/tools/libwg-go/jni.c b/app/tools/libwg-go/jni.c index 1476dab7..a0f3d0ba 100644 --- a/app/tools/libwg-go/jni.c +++ b/app/tools/libwg-go/jni.c @@ -1,3 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later + * + * Copyright © 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + */ + #include <jni.h> struct go_string { const char *str; long n; }; diff --git a/app/tools/wg-quick.c b/app/tools/wg-quick.c index 0610d12f..745f5ee6 100644 --- a/app/tools/wg-quick.c +++ b/app/tools/wg-quick.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright © 2015-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. * * This is a shell script written in C. It very intentionally still functions like * a shell script, calling out to external executables such as ip(8). |