From 5be541d147562bf87f6a9ebd551412d4a6920b4b Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 5 Sep 2018 15:54:31 -0600 Subject: global: fix up copyright headers --- allowedips.go | 3 +-- allowedips_rand_test.go | 3 +-- allowedips_test.go | 3 +-- bind_test.go | 3 +-- conn.go | 3 +-- conn_default.go | 3 +-- conn_linux.go | 3 +-- constants.go | 3 +-- cookie.go | 3 +-- cookie_test.go | 3 +-- device.go | 3 +-- device_test.go | 3 +-- donotuseon_linux.go | 2 +- endpoint_test.go | 3 +-- helper_test.go | 3 +-- indextable.go | 3 +-- ip.go | 3 +-- kdf_test.go | 3 +-- keypair.go | 3 +-- logger.go | 3 +-- main.go | 3 +-- misc.go | 3 +-- noise-helpers.go | 3 +-- noise-protocol.go | 3 +-- noise-types.go | 3 +-- noise_test.go | 3 +-- peer.go | 3 +-- ratelimiter/ratelimiter.go | 2 +- ratelimiter/ratelimiter_test.go | 2 +- receive.go | 3 +-- replay/replay.go | 3 +-- replay/replay_test.go | 3 +-- rwcancel/fdset_default.go | 2 +- rwcancel/fdset_freebsd.go | 2 +- rwcancel/rwcancel.go | 2 +- rwcancel/select_default.go | 2 +- rwcancel/select_linux.go | 2 +- send.go | 3 +-- tai64n/tai64n.go | 2 +- tai64n/tai64n_test.go | 2 +- timers.go | 2 +- tun.go | 3 +-- tun/tun.go | 3 +-- tun/tun_darwin.go | 3 +-- tun/tun_freebsd.go | 2 +- tun/tun_linux.go | 3 +-- tun/tun_openbsd.go | 2 +- uapi.go | 3 +-- uapi_bsd.go | 3 +-- uapi_linux.go | 3 +-- xchacha20poly1305/xchacha20.go | 2 +- xchacha20poly1305/xchacha20_test.go | 2 +- 52 files changed, 52 insertions(+), 89 deletions(-) diff --git a/allowedips.go b/allowedips.go index 78921eb..f341eae 100644 --- a/allowedips.go +++ b/allowedips.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/allowedips_rand_test.go b/allowedips_rand_test.go index 2efbfd1..8a4fcad 100644 --- a/allowedips_rand_test.go +++ b/allowedips_rand_test.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/allowedips_test.go b/allowedips_test.go index 3fd2d3f..d524f62 100644 --- a/allowedips_test.go +++ b/allowedips_test.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/bind_test.go b/bind_test.go index 70efdb1..9cafda6 100644 --- a/bind_test.go +++ b/bind_test.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/conn.go b/conn.go index c0a91c9..83463d6 100644 --- a/conn.go +++ b/conn.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/conn_default.go b/conn_default.go index 92135cb..9b2325c 100644 --- a/conn_default.go +++ b/conn_default.go @@ -2,8 +2,7 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/conn_linux.go b/conn_linux.go index 2b15d05..db0e3a6 100644 --- a/conn_linux.go +++ b/conn_linux.go @@ -2,8 +2,7 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. * * 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 39fb884..167036f 100644 --- a/constants.go +++ b/constants.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/cookie.go b/cookie.go index 1915272..e7c926a 100644 --- a/cookie.go +++ b/cookie.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/cookie_test.go b/cookie_test.go index a80a684..cc75303 100644 --- a/cookie_test.go +++ b/cookie_test.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/device.go b/device.go index 5f7254c..2245a61 100644 --- a/device.go +++ b/device.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/device_test.go b/device_test.go index c117116..f0abf4d 100644 --- a/device_test.go +++ b/device_test.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/donotuseon_linux.go b/donotuseon_linux.go index 7197375..4264cc1 100644 --- a/donotuseon_linux.go +++ b/donotuseon_linux.go @@ -2,7 +2,7 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/endpoint_test.go b/endpoint_test.go index 6a5a00f..1579dcc 100644 --- a/endpoint_test.go +++ b/endpoint_test.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/helper_test.go b/helper_test.go index 294d52c..edbe06c 100644 --- a/helper_test.go +++ b/helper_test.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/indextable.go b/indextable.go index 3cb1600..656a0b7 100644 --- a/indextable.go +++ b/indextable.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/ip.go b/ip.go index ecefa47..6124037 100644 --- a/ip.go +++ b/ip.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/kdf_test.go b/kdf_test.go index 897a5bd..21d37ba 100644 --- a/kdf_test.go +++ b/kdf_test.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/keypair.go b/keypair.go index c43a3d2..9c45ab3 100644 --- a/keypair.go +++ b/keypair.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/logger.go b/logger.go index 02b5420..c54c6e4 100644 --- a/logger.go +++ b/logger.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/main.go b/main.go index b85ec5c..12e0d24 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/misc.go b/misc.go index ede94f9..ce43a2b 100644 --- a/misc.go +++ b/misc.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/noise-helpers.go b/noise-helpers.go index ce398c4..6d0caed 100644 --- a/noise-helpers.go +++ b/noise-helpers.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/noise-protocol.go b/noise-protocol.go index 45dca72..cc85cce 100644 --- a/noise-protocol.go +++ b/noise-protocol.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2015-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/noise-types.go b/noise-types.go index f4f5a27..b1e70b5 100644 --- a/noise-types.go +++ b/noise-types.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/noise_test.go b/noise_test.go index 3da36e9..1b4f0c5 100644 --- a/noise_test.go +++ b/noise_test.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/peer.go b/peer.go index 228dc5e..6c725f0 100644 --- a/peer.go +++ b/peer.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/ratelimiter/ratelimiter.go b/ratelimiter/ratelimiter.go index 5a844da..85483e5 100644 --- a/ratelimiter/ratelimiter.go +++ b/ratelimiter/ratelimiter.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package ratelimiter diff --git a/ratelimiter/ratelimiter_test.go b/ratelimiter/ratelimiter_test.go index 9bdaa4d..4920194 100644 --- a/ratelimiter/ratelimiter_test.go +++ b/ratelimiter/ratelimiter_test.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package ratelimiter diff --git a/receive.go b/receive.go index 86d1e69..b23c5e0 100644 --- a/receive.go +++ b/receive.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/replay/replay.go b/replay/replay.go index 993ff58..2df1b10 100644 --- a/replay/replay.go +++ b/replay/replay.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package replay diff --git a/replay/replay_test.go b/replay/replay_test.go index da39498..b91679f 100644 --- a/replay/replay_test.go +++ b/replay/replay_test.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package replay diff --git a/rwcancel/fdset_default.go b/rwcancel/fdset_default.go index 06e2695..f8a4b25 100644 --- a/rwcancel/fdset_default.go +++ b/rwcancel/fdset_default.go @@ -2,7 +2,7 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package rwcancel diff --git a/rwcancel/fdset_freebsd.go b/rwcancel/fdset_freebsd.go index 39a7a4e..0c115c1 100644 --- a/rwcancel/fdset_freebsd.go +++ b/rwcancel/fdset_freebsd.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package rwcancel diff --git a/rwcancel/rwcancel.go b/rwcancel/rwcancel.go index e73c58a..1e3572a 100644 --- a/rwcancel/rwcancel.go +++ b/rwcancel/rwcancel.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package rwcancel diff --git a/rwcancel/select_default.go b/rwcancel/select_default.go index d37a536..f0242b2 100644 --- a/rwcancel/select_default.go +++ b/rwcancel/select_default.go @@ -2,7 +2,7 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package rwcancel diff --git a/rwcancel/select_linux.go b/rwcancel/select_linux.go index c3d4e27..7f1065b 100644 --- a/rwcancel/select_linux.go +++ b/rwcancel/select_linux.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package rwcancel diff --git a/send.go b/send.go index 0e03669..731c50a 100644 --- a/send.go +++ b/send.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/tai64n/tai64n.go b/tai64n/tai64n.go index 1c7f42b..146126f 100644 --- a/tai64n/tai64n.go +++ b/tai64n/tai64n.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package tai64n diff --git a/tai64n/tai64n_test.go b/tai64n/tai64n_test.go index 62e7b1b..ebfd78d 100644 --- a/tai64n/tai64n_test.go +++ b/tai64n/tai64n_test.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package tai64n diff --git a/timers.go b/timers.go index e974646..0a9c739 100644 --- a/timers.go +++ b/timers.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2015-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. * * This is based heavily on timers.c from the kernel implementation. */ diff --git a/tun.go b/tun.go index 6c239ea..c5394bc 100644 --- a/tun.go +++ b/tun.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/tun/tun.go b/tun/tun.go index a39ced5..d4434eb 100644 --- a/tun/tun.go +++ b/tun/tun.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package tun diff --git a/tun/tun_darwin.go b/tun/tun_darwin.go index 6262321..24d2319 100644 --- a/tun/tun_darwin.go +++ b/tun/tun_darwin.go @@ -2,8 +2,7 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package tun diff --git a/tun/tun_freebsd.go b/tun/tun_freebsd.go index 8c7bcdd..a0c8b28 100644 --- a/tun/tun_freebsd.go +++ b/tun/tun_freebsd.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package tun diff --git a/tun/tun_linux.go b/tun/tun_linux.go index f259888..d0af51d 100644 --- a/tun/tun_linux.go +++ b/tun/tun_linux.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package tun diff --git a/tun/tun_openbsd.go b/tun/tun_openbsd.go index 5a341f6..58871b1 100644 --- a/tun/tun_openbsd.go +++ b/tun/tun_openbsd.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package tun diff --git a/uapi.go b/uapi.go index 1801c4c..3eed870 100644 --- a/uapi.go +++ b/uapi.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/uapi_bsd.go b/uapi_bsd.go index 80435dd..714f75e 100644 --- a/uapi_bsd.go +++ b/uapi_bsd.go @@ -2,8 +2,7 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/uapi_linux.go b/uapi_linux.go index 7e6e7f8..e4b2f9c 100644 --- a/uapi_linux.go +++ b/uapi_linux.go @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. - * Copyright (C) 2017-2018 Mathias N. Hall-Andersen . + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package main diff --git a/xchacha20poly1305/xchacha20.go b/xchacha20poly1305/xchacha20.go index bd27f02..412797d 100644 --- a/xchacha20poly1305/xchacha20.go +++ b/xchacha20poly1305/xchacha20.go @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: MIT * * Copyright (C) 2016 Andreas Auernhammer. All Rights Reserved. - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package xchacha20poly1305 diff --git a/xchacha20poly1305/xchacha20_test.go b/xchacha20poly1305/xchacha20_test.go index c0d11d7..0c3a80d 100644 --- a/xchacha20poly1305/xchacha20_test.go +++ b/xchacha20poly1305/xchacha20_test.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 * - * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + * Copyright (C) 2017-2018 WireGuard LLC. All Rights Reserved. */ package xchacha20poly1305 -- cgit v1.2.3-59-g8ed1b