aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2018-05-19 00:34:56 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2018-05-19 02:40:22 +0200
commit38accea986211f232ffcf2411379f5dc120514dc (patch)
tree041500c7bf6b3cef25282569423e739345a6971f
parentAvoid using v6-mapped-v4 (diff)
downloadwireguard-go-38accea986211f232ffcf2411379f5dc120514dc.tar.xz
wireguard-go-38accea986211f232ffcf2411379f5dc120514dc.zip
Add copyright headers
Diffstat (limited to '')
-rw-r--r--allowedips.go1
-rw-r--r--allowedips_rand_test.go1
-rw-r--r--allowedips_test.go1
-rw-r--r--bind_test.go1
-rw-r--r--conn.go1
-rw-r--r--conn_default.go1
-rw-r--r--conn_linux.go1
-rw-r--r--constants.go1
-rw-r--r--cookie.go1
-rw-r--r--cookie_test.go1
-rw-r--r--device.go1
-rw-r--r--device_test.go1
-rw-r--r--endpoint_test.go1
-rw-r--r--helper_test.go1
-rw-r--r--indextable.go1
-rw-r--r--ip.go1
-rw-r--r--kdf_test.go1
-rw-r--r--keypair.go1
-rw-r--r--logger.go1
-rw-r--r--main.go1
-rw-r--r--misc.go1
-rw-r--r--noise-helpers.go1
-rw-r--r--noise-protocol.go1
-rw-r--r--noise-types.go1
-rw-r--r--noise_test.go1
-rw-r--r--peer.go1
-rw-r--r--receive.go1
-rw-r--r--replay.go1
-rw-r--r--replay_test.go1
-rw-r--r--send.go1
-rw-r--r--tun.go1
-rw-r--r--tun_darwin.go1
-rw-r--r--tun_linux.go1
-rw-r--r--tun_windows.go1
-rw-r--r--uapi.go1
-rw-r--r--uapi_darwin.go1
-rw-r--r--uapi_linux.go1
-rw-r--r--uapi_windows.go1
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
diff --git a/conn.go b/conn.go
index fc503bf..b79b9cd 100644
--- a/conn.go
+++ b/conn.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/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
diff --git a/cookie.go b/cookie.go
index c0d3ed9..c39ad22 100644
--- a/cookie.go
+++ b/cookie.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/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
diff --git a/device.go b/device.go
index 6e693f9..53e7dcc 100644
--- a/device.go
+++ b/device.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/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
diff --git a/ip.go b/ip.go
index 7be9337..ecefa47 100644
--- a/ip.go
+++ b/ip.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/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
diff --git a/keypair.go b/keypair.go
index ea72a11..be7600b 100644
--- a/keypair.go
+++ b/keypair.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/logger.go b/logger.go
index 849f674..02b5420 100644
--- a/logger.go
+++ b/logger.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/main.go b/main.go
index b13dcbe..343e585 100644
--- a/main.go
+++ b/main.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/misc.go b/misc.go
index 85a2e80..aeda813 100644
--- a/misc.go
+++ b/misc.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-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
diff --git a/peer.go b/peer.go
index 3808ad6..e78f6c4 100644
--- a/peer.go
+++ b/peer.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/receive.go b/receive.go
index aa96057..0f8554f 100644
--- a/receive.go
+++ b/receive.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/replay.go b/replay.go
index 8fab1d2..2d9c6e1 100644
--- a/replay.go
+++ b/replay.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/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
diff --git a/send.go b/send.go
index 5605ad1..ce545df 100644
--- a/send.go
+++ b/send.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.go b/tun.go
index ef80625..65a878c 100644
--- a/tun.go
+++ b/tun.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_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
diff --git a/uapi.go b/uapi.go
index 3e4c28c..fa60709 100644
--- a/uapi.go
+++ b/uapi.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_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