aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2021-01-30 16:45:26 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2021-01-30 16:45:26 +0100
commit2628412d71a6caf22368cd6d7cf441ded139db4f (patch)
tree0d80867d138ad1af7be7ec8b4768386d95aca4df
parentapi: use custom devpkey for pool (diff)
downloadwintun-2628412d71a6caf22368cd6d7cf441ded139db4f.tar.xz
wintun-2628412d71a6caf22368cd6d7cf441ded139db4f.zip
global: bump copyright
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--COPYING2
-rw-r--r--README.md2
-rw-r--r--api/adapter.c2
-rw-r--r--api/adapter.h2
-rw-r--r--api/elevate.c2
-rw-r--r--api/elevate.h2
-rw-r--r--api/entry.c2
-rw-r--r--api/entry.h2
-rw-r--r--api/extract-driverver.js2
-rw-r--r--api/logger.c2
-rw-r--r--api/logger.h2
-rw-r--r--api/namespace.c2
-rw-r--r--api/namespace.h2
-rw-r--r--api/nci.h2
-rw-r--r--api/ntdll.h2
-rw-r--r--api/pch.c2
-rw-r--r--api/registry.c2
-rw-r--r--api/registry.h2
-rw-r--r--api/resource.c2
-rw-r--r--api/resource.h2
-rw-r--r--api/resources.rc4
-rw-r--r--api/rundll32.c2
-rw-r--r--api/rundll32_i.c2
-rw-r--r--api/session.c2
-rw-r--r--api/wintun.h2
-rw-r--r--driver/undocumented.h2
-rw-r--r--driver/wintun.c2
-rw-r--r--driver/wintun.inf2
-rw-r--r--driver/wintun.rc4
-rw-r--r--example/example.c2
30 files changed, 32 insertions, 32 deletions
diff --git a/COPYING b/COPYING
index 817b13d..9094713 100644
--- a/COPYING
+++ b/COPYING
@@ -1,4 +1,4 @@
-This program is Copyright (C) 2018-2020 WireGuard LLC.
+This program is Copyright (C) 2018-2021 WireGuard LLC.
------------------------------------------------------------------------------
GNU GENERAL PUBLIC LICENSE
diff --git a/README.md b/README.md
index 742779e..20253ea 100644
--- a/README.md
+++ b/README.md
@@ -404,4 +404,4 @@ General requirements:
## License
-The entire contents of [the repository](https://git.zx2c4.com/wintun/), including all documentation and example code, is "Copyright © 2018-2020 WireGuard LLC. All Rights Reserved." Source code is licensed under the [GPLv2](COPYING). Prebuilt binaries from [wintun.net](https://www.wintun.net/) are released under a more permissive license suitable for more forms of software contained inside of the .zip files distributed there.
+The entire contents of [the repository](https://git.zx2c4.com/wintun/), including all documentation and example code, is "Copyright © 2018-2021 WireGuard LLC. All Rights Reserved." Source code is licensed under the [GPLv2](COPYING). Prebuilt binaries from [wintun.net](https://www.wintun.net/) are released under a more permissive license suitable for more forms of software contained inside of the .zip files distributed there.
diff --git a/api/adapter.c b/api/adapter.c
index 9373c42..6766b9e 100644
--- a/api/adapter.c
+++ b/api/adapter.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#include "adapter.h"
diff --git a/api/adapter.h b/api/adapter.h
index f98415a..940330b 100644
--- a/api/adapter.h
+++ b/api/adapter.h
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#pragma once
diff --git a/api/elevate.c b/api/elevate.c
index 47dcbd1..c4474b0 100644
--- a/api/elevate.c
+++ b/api/elevate.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#include "elevate.h"
diff --git a/api/elevate.h b/api/elevate.h
index aa0fc60..2ad8eb8 100644
--- a/api/elevate.h
+++ b/api/elevate.h
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#pragma once
diff --git a/api/entry.c b/api/entry.c
index 7acd09b..23d20bc 100644
--- a/api/entry.c
+++ b/api/entry.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#include "adapter.h"
diff --git a/api/entry.h b/api/entry.h
index c58b7cc..65405b7 100644
--- a/api/entry.h
+++ b/api/entry.h
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#pragma once
diff --git a/api/extract-driverver.js b/api/extract-driverver.js
index 5ec83ef..ee60b8a 100644
--- a/api/extract-driverver.js
+++ b/api/extract-driverver.js
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
while (!WScript.StdIn.AtEndOfStream) {
diff --git a/api/logger.c b/api/logger.c
index 2813db7..a1ab72d 100644
--- a/api/logger.c
+++ b/api/logger.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#include "logger.h"
diff --git a/api/logger.h b/api/logger.h
index 6611528..d0848a9 100644
--- a/api/logger.h
+++ b/api/logger.h
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#pragma once
diff --git a/api/namespace.c b/api/namespace.c
index 0a4c775..51fdb9d 100644
--- a/api/namespace.c
+++ b/api/namespace.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#include "entry.h"
diff --git a/api/namespace.h b/api/namespace.h
index d0f83a1..35d9930 100644
--- a/api/namespace.h
+++ b/api/namespace.h
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#pragma once
diff --git a/api/nci.h b/api/nci.h
index 0d13b19..40e964e 100644
--- a/api/nci.h
+++ b/api/nci.h
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#pragma once
diff --git a/api/ntdll.h b/api/ntdll.h
index f9c0b15..e78a8b2 100644
--- a/api/ntdll.h
+++ b/api/ntdll.h
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#pragma once
diff --git a/api/pch.c b/api/pch.c
index 6ea6d44..5c6aeaf 100644
--- a/api/pch.c
+++ b/api/pch.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#include "pch.h"
diff --git a/api/registry.c b/api/registry.c
index 5ec1848..695844a 100644
--- a/api/registry.c
+++ b/api/registry.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#include "entry.h"
diff --git a/api/registry.h b/api/registry.h
index a79370d..2a85a06 100644
--- a/api/registry.h
+++ b/api/registry.h
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#pragma once
diff --git a/api/resource.c b/api/resource.c
index e4f4aaa..a73e9fc 100644
--- a/api/resource.c
+++ b/api/resource.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#include "entry.h"
diff --git a/api/resource.h b/api/resource.h
index 3572ace..8938241 100644
--- a/api/resource.h
+++ b/api/resource.h
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#pragma once
diff --git a/api/resources.rc b/api/resources.rc
index 1e0646b..607eee6 100644
--- a/api/resources.rc
+++ b/api/resources.rc
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#include <windows.h>
@@ -41,7 +41,7 @@ BEGIN
VALUE "FileDescription", "Wintun API Library"
VALUE "FileVersion", EXPAND(WINTUN_VERSION_STR)
VALUE "InternalName", "wintun.dll"
- VALUE "LegalCopyright", "Copyright \xa9 2018-2020 WireGuard LLC. All Rights Reserved."
+ VALUE "LegalCopyright", "Copyright \xa9 2018-2021 WireGuard LLC. All Rights Reserved."
VALUE "OriginalFilename", "wintun.dll"
VALUE "ProductName", "Wintun Driver"
VALUE "ProductVersion", EXPAND(WINTUN_VERSION_STR)
diff --git a/api/rundll32.c b/api/rundll32.c
index dc47a21..ca77b7f 100644
--- a/api/rundll32.c
+++ b/api/rundll32.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#include "entry.h"
diff --git a/api/rundll32_i.c b/api/rundll32_i.c
index 1623409..0bb0f1b 100644
--- a/api/rundll32_i.c
+++ b/api/rundll32_i.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
/* TODO: This is currently #include'd in adapter.c. Move into rundll32.c properly. */
diff --git a/api/session.c b/api/session.c
index a900a0a..c522ed9 100644
--- a/api/session.c
+++ b/api/session.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#include "adapter.h"
diff --git a/api/wintun.h b/api/wintun.h
index e4606d5..da2dfcf 100644
--- a/api/wintun.h
+++ b/api/wintun.h
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0 OR MIT
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#pragma once
diff --git a/driver/undocumented.h b/driver/undocumented.h
index a3b3926..199e3c7 100644
--- a/driver/undocumented.h
+++ b/driver/undocumented.h
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#pragma once
diff --git a/driver/wintun.c b/driver/wintun.c
index b833663..931b7e8 100644
--- a/driver/wintun.c
+++ b/driver/wintun.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#include <ntifs.h>
diff --git a/driver/wintun.inf b/driver/wintun.inf
index 6dd83a5..9888b06 100644
--- a/driver/wintun.inf
+++ b/driver/wintun.inf
@@ -1,6 +1,6 @@
; SPDX-License-Identifier: GPL-2.0
;
-; Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+; Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
[Version]
Signature = "$Windows NT$"
diff --git a/driver/wintun.rc b/driver/wintun.rc
index 7abbcae..8552b80 100644
--- a/driver/wintun.rc
+++ b/driver/wintun.rc
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#include <windows.h>
@@ -24,7 +24,7 @@ BEGIN
VALUE "FileDescription", "Wintun Driver"
VALUE "FileVersion", EXPAND(WINTUN_VERSION_STR)
VALUE "InternalName", "wintun.sys"
- VALUE "LegalCopyright", "Copyright \xa9 2018-2020 WireGuard LLC. All Rights Reserved."
+ VALUE "LegalCopyright", "Copyright \xa9 2018-2021 WireGuard LLC. All Rights Reserved."
VALUE "OriginalFilename", "wintun.sys"
VALUE "ProductName", "Wintun Driver"
VALUE "ProductVersion", EXPAND(WINTUN_VERSION_STR)
diff --git a/example/example.c b/example/example.c
index 5a00332..d36c2d4 100644
--- a/example/example.c
+++ b/example/example.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0
*
- * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
+ * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
*/
#include <winsock2.h>