diff options
author | Mathias Hall-Andersen <mathias@hall-andersen.dk> | 2018-05-19 00:34:56 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-05-19 02:40:22 +0200 |
commit | 38accea986211f232ffcf2411379f5dc120514dc (patch) | |
tree | 041500c7bf6b3cef25282569423e739345a6971f | |
parent | 125976edcec65265d9ea3ca38a9826c71b4a88d9 (diff) |
Add copyright headers
-rw-r--r-- | allowedips.go | 1 | ||||
-rw-r--r-- | allowedips_rand_test.go | 1 | ||||
-rw-r--r-- | allowedips_test.go | 1 | ||||
-rw-r--r-- | bind_test.go | 1 | ||||
-rw-r--r-- | conn.go | 1 | ||||
-rw-r--r-- | conn_default.go | 1 | ||||
-rw-r--r-- | conn_linux.go | 1 | ||||
-rw-r--r-- | constants.go | 1 | ||||
-rw-r--r-- | cookie.go | 1 | ||||
-rw-r--r-- | cookie_test.go | 1 | ||||
-rw-r--r-- | device.go | 1 | ||||
-rw-r--r-- | device_test.go | 1 | ||||
-rw-r--r-- | endpoint_test.go | 1 | ||||
-rw-r--r-- | helper_test.go | 1 | ||||
-rw-r--r-- | indextable.go | 1 | ||||
-rw-r--r-- | ip.go | 1 | ||||
-rw-r--r-- | kdf_test.go | 1 | ||||
-rw-r--r-- | keypair.go | 1 | ||||
-rw-r--r-- | logger.go | 1 | ||||
-rw-r--r-- | main.go | 1 | ||||
-rw-r--r-- | misc.go | 1 | ||||
-rw-r--r-- | noise-helpers.go | 1 | ||||
-rw-r--r-- | noise-protocol.go | 1 | ||||
-rw-r--r-- | noise-types.go | 1 | ||||
-rw-r--r-- | noise_test.go | 1 | ||||
-rw-r--r-- | peer.go | 1 | ||||
-rw-r--r-- | receive.go | 1 | ||||
-rw-r--r-- | replay.go | 1 | ||||
-rw-r--r-- | replay_test.go | 1 | ||||
-rw-r--r-- | send.go | 1 | ||||
-rw-r--r-- | tun.go | 1 | ||||
-rw-r--r-- | tun_darwin.go | 1 | ||||
-rw-r--r-- | tun_linux.go | 1 | ||||
-rw-r--r-- | tun_windows.go | 1 | ||||
-rw-r--r-- | uapi.go | 1 | ||||
-rw-r--r-- | uapi_darwin.go | 1 | ||||
-rw-r--r-- | uapi_linux.go | 1 | ||||
-rw-r--r-- | uapi_windows.go | 1 |
38 files changed, 38 insertions, 0 deletions
diff --git a/allowedips.go b/allowedips.go index 92a6f1d..78921eb 100644 --- a/allowedips.go +++ b/allowedips.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/allowedips_rand_test.go b/allowedips_rand_test.go index f60df76..2efbfd1 100644 --- a/allowedips_rand_test.go +++ b/allowedips_rand_test.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/allowedips_test.go b/allowedips_test.go index ce21cb4..3fd2d3f 100644 --- a/allowedips_test.go +++ b/allowedips_test.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/bind_test.go b/bind_test.go index 47f5492..70efdb1 100644 --- a/bind_test.go +++ b/bind_test.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/conn_default.go b/conn_default.go index 7204a03..da6fa3d 100644 --- a/conn_default.go +++ b/conn_default.go @@ -3,6 +3,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/conn_linux.go b/conn_linux.go index b0c6d96..848694d 100644 --- a/conn_linux.go +++ b/conn_linux.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. * * This implements userspace semantics of "sticky sockets", modeled after * WireGuard's kernelspace implementation. This is more or less a straight port diff --git a/constants.go b/constants.go index 01af1bb..39fb884 100644 --- a/constants.go +++ b/constants.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/cookie_test.go b/cookie_test.go index 34c8ad4..a80a684 100644 --- a/cookie_test.go +++ b/cookie_test.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/device_test.go b/device_test.go index 7af52b2..bafebe2 100644 --- a/device_test.go +++ b/device_test.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/endpoint_test.go b/endpoint_test.go index 5dd6cb4..6a5a00f 100644 --- a/endpoint_test.go +++ b/endpoint_test.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/helper_test.go b/helper_test.go index 20b1d0a..c72e868 100644 --- a/helper_test.go +++ b/helper_test.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/indextable.go b/indextable.go index 2d947cd..3cb1600 100644 --- a/indextable.go +++ b/indextable.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/kdf_test.go b/kdf_test.go index fa4a2d2..897a5bd 100644 --- a/kdf_test.go +++ b/kdf_test.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/noise-helpers.go b/noise-helpers.go index 63e45b3..ce398c4 100644 --- a/noise-helpers.go +++ b/noise-helpers.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/noise-protocol.go b/noise-protocol.go index c134107..c6a95d8 100644 --- a/noise-protocol.go +++ b/noise-protocol.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2015-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/noise-types.go b/noise-types.go index 2635e01..f4f5a27 100644 --- a/noise-types.go +++ b/noise-types.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/noise_test.go b/noise_test.go index b165c0f..d5b1011 100644 --- a/noise_test.go +++ b/noise_test.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/replay_test.go b/replay_test.go index 77180e5..8b2e57d 100644 --- a/replay_test.go +++ b/replay_test.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/tun_darwin.go b/tun_darwin.go index 04badd9..f76de13 100644 --- a/tun_darwin.go +++ b/tun_darwin.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/tun_linux.go b/tun_linux.go index 32bd95d..cd928db 100644 --- a/tun_linux.go +++ b/tun_linux.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ /* Copyright 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ diff --git a/tun_windows.go b/tun_windows.go index 6eea5a3..c13ca72 100644 --- a/tun_windows.go +++ b/tun_windows.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/uapi_darwin.go b/uapi_darwin.go index 1441960..228021f 100644 --- a/uapi_darwin.go +++ b/uapi_darwin.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/uapi_linux.go b/uapi_linux.go index 41e5325..2b5b9a0 100644 --- a/uapi_linux.go +++ b/uapi_linux.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main diff --git a/uapi_windows.go b/uapi_windows.go index 01f5505..41808f7 100644 --- a/uapi_windows.go +++ b/uapi_windows.go @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0 * * Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. + * Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>. */ package main |