aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--src/Kconfig2
-rw-r--r--src/main.c2
-rwxr-xr-xsrc/tests/netns.sh2
-rw-r--r--src/tests/qemu/Makefile2
-rw-r--r--src/tests/qemu/init.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index 0f6e1c5..08f8827 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
WireGuard is a novel VPN that runs inside the Linux Kernel and utilizes **state-of-the-art cryptography**. It aims to be faster, simpler, leaner, and more useful than IPSec, while avoiding the massive headache. It intends to be considerably more performant than OpenVPN. WireGuard is designed as a general purpose VPN for running on embedded interfaces and super computers alike, fit for many different circumstances. It runs over UDP.
-**More information may be found at [WireGuard.io](https://www.wireguard.io/).**
+**More information may be found at [WireGuard.com](https://www.wireguard.com/).**
## License
diff --git a/src/Kconfig b/src/Kconfig
index f2e25bb..e86a935 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -11,7 +11,7 @@ config WIREGUARD
that uses modern cryptography and clever networking tricks. It's
designed to be fairly general purpose and abstract enough to fit most
use cases, while at the same time remaining extremely simple to
- configure. See www.wireguard.io for more info.
+ configure. See www.wireguard.com for more info.
It's safe to say Y or M here, as the driver is very lightweight and
is only in use when an administrator chooses to add an interface.
diff --git a/src/main.c b/src/main.c
index 91d8886..0697741 100644
--- a/src/main.c
+++ b/src/main.c
@@ -37,7 +37,7 @@ static int __init mod_init(void)
if (ret < 0)
goto err_device;
- pr_info("WireGuard " WIREGUARD_VERSION " loaded. See www.wireguard.io for information.\n");
+ pr_info("WireGuard " WIREGUARD_VERSION " loaded. See www.wireguard.com for information.\n");
pr_info("Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.\n");
return 0;
diff --git a/src/tests/netns.sh b/src/tests/netns.sh
index 72f6333..4c60e95 100755
--- a/src/tests/netns.sh
+++ b/src/tests/netns.sh
@@ -18,7 +18,7 @@
#
# After the topology is prepared we run a series of TCP/UDP iperf3 tests between the
# wireguard peers in $ns1 and $ns2. Note that $ns0 is the endpoint for the wg0
-# interfaces in $ns1 and $ns2. See https://www.wireguard.io/netns/ for further
+# interfaces in $ns1 and $ns2. See https://www.wireguard.com/netns/ for further
# details on how this is accomplished.
set -e
diff --git a/src/tests/qemu/Makefile b/src/tests/qemu/Makefile
index 9dbcc51..05081cd 100644
--- a/src/tests/qemu/Makefile
+++ b/src/tests/qemu/Makefile
@@ -10,7 +10,7 @@ NR_CPUS ?= 2
DOWNLOAD := wget -O
# DOWNLOAD := curl -f -o
-MIRROR := https://download.wireguard.io/qemu-test/distfiles/
+MIRROR := https://download.wireguard.com/qemu-test/distfiles/
CHOST := $(shell gcc -dumpmachine)
ARCH := $(shell uname -m)
diff --git a/src/tests/qemu/init.c b/src/tests/qemu/init.c
index 38df1aa..ea578c1 100644
--- a/src/tests/qemu/init.c
+++ b/src/tests/qemu/init.c
@@ -129,7 +129,7 @@ static void kmod_selftests(void)
continue;
start += 11;
*strchrnul(start, '\n') = '\0';
- if (strstr(start, "www.wireguard.io"))
+ if (strstr(start, "www.wireguard.com"))
break;
pass = strstr(start, ": pass");
if (!pass || pass[6] != '\0') {