diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2022-09-20 17:21:32 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2023-02-07 20:39:29 -0300 |
commit | ebbd4a433088a06277b7e7bc6e13322c167d5554 (patch) | |
tree | c01a0c02a85aa45b152d78bf6dd88decc9d39a10 /tun | |
parent | 0ae4b3177cd6867f261ad661bd7bff3a0984ff2b (diff) |
global: bump copyright year
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'tun')
-rw-r--r-- | tun/alignment_windows_test.go | 2 | ||||
-rw-r--r-- | tun/netstack/examples/http_client.go | 2 | ||||
-rw-r--r-- | tun/netstack/examples/http_server.go | 2 | ||||
-rw-r--r-- | tun/netstack/examples/ping_client.go | 2 | ||||
-rw-r--r-- | tun/netstack/tun.go | 2 | ||||
-rw-r--r-- | tun/operateonfd.go | 2 | ||||
-rw-r--r-- | tun/tun.go | 2 | ||||
-rw-r--r-- | tun/tun_darwin.go | 2 | ||||
-rw-r--r-- | tun/tun_freebsd.go | 2 | ||||
-rw-r--r-- | tun/tun_linux.go | 2 | ||||
-rw-r--r-- | tun/tun_openbsd.go | 2 | ||||
-rw-r--r-- | tun/tun_windows.go | 2 | ||||
-rw-r--r-- | tun/tuntest/tuntest.go | 2 |
13 files changed, 13 insertions, 13 deletions
diff --git a/tun/alignment_windows_test.go b/tun/alignment_windows_test.go index 9ece909..67a785e 100644 --- a/tun/alignment_windows_test.go +++ b/tun/alignment_windows_test.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: MIT * - * Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved. + * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved. */ package tun diff --git a/tun/netstack/examples/http_client.go b/tun/netstack/examples/http_client.go index 0c70893..7df587a 100644 --- a/tun/netstack/examples/http_client.go +++ b/tun/netstack/examples/http_client.go @@ -3,7 +3,7 @@ /* SPDX-License-Identifier: MIT * - * Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved. + * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved. */ package main diff --git a/tun/netstack/examples/http_server.go b/tun/netstack/examples/http_server.go index 75e4180..3130c70 100644 --- a/tun/netstack/examples/http_server.go +++ b/tun/netstack/examples/http_server.go @@ -3,7 +3,7 @@ /* SPDX-License-Identifier: MIT * - * Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved. + * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved. */ package main diff --git a/tun/netstack/examples/ping_client.go b/tun/netstack/examples/ping_client.go index f5e649b..e1b11cb 100644 --- a/tun/netstack/examples/ping_client.go +++ b/tun/netstack/examples/ping_client.go @@ -3,7 +3,7 @@ /* SPDX-License-Identifier: MIT * - * Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved. + * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved. */ package main diff --git a/tun/netstack/tun.go b/tun/netstack/tun.go index 6161d30..25486a6 100644 --- a/tun/netstack/tun.go +++ b/tun/netstack/tun.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: MIT * - * Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved. + * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved. */ package netstack diff --git a/tun/operateonfd.go b/tun/operateonfd.go index 53bbebf..f1beb6d 100644 --- a/tun/operateonfd.go +++ b/tun/operateonfd.go @@ -2,7 +2,7 @@ /* SPDX-License-Identifier: MIT * - * Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved. + * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved. */ package tun @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: MIT * - * Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved. + * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved. */ package tun diff --git a/tun/tun_darwin.go b/tun/tun_darwin.go index 62a8c49..a04bad4 100644 --- a/tun/tun_darwin.go +++ b/tun/tun_darwin.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: MIT * - * Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved. + * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved. */ package tun diff --git a/tun/tun_freebsd.go b/tun/tun_freebsd.go index e8fd87c..a8ebb34 100644 --- a/tun/tun_freebsd.go +++ b/tun/tun_freebsd.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: MIT * - * Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved. + * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved. */ package tun diff --git a/tun/tun_linux.go b/tun/tun_linux.go index f02394d..6275399 100644 --- a/tun/tun_linux.go +++ b/tun/tun_linux.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: MIT * - * Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved. + * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved. */ package tun diff --git a/tun/tun_openbsd.go b/tun/tun_openbsd.go index 5c78e4e..ee8cf5a 100644 --- a/tun/tun_openbsd.go +++ b/tun/tun_openbsd.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: MIT * - * Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved. + * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved. */ package tun diff --git a/tun/tun_windows.go b/tun/tun_windows.go index 9e8bfbf..751ad21 100644 --- a/tun/tun_windows.go +++ b/tun/tun_windows.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: MIT * - * Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved. + * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved. */ package tun diff --git a/tun/tuntest/tuntest.go b/tun/tuntest/tuntest.go index e9971d1..4e61df5 100644 --- a/tun/tuntest/tuntest.go +++ b/tun/tuntest/tuntest.go @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: MIT * - * Copyright (C) 2017-2022 WireGuard LLC. All Rights Reserved. + * Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved. */ package tuntest |