aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-12-30 11:54:13 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2019-12-30 11:54:13 +0100
commitba1c968cdf51bb8d661b9d3a273b8eee66f99abb (patch)
treea2e851b9b95dc39666a5d7fc38215b767c423120
parentwireguard-go-bridge: style (diff)
downloadwireguard-apple-ba1c968cdf51bb8d661b9d3a273b8eee66f99abb.tar.xz
wireguard-apple-ba1c968cdf51bb8d661b9d3a273b8eee66f99abb.zip
Update repo urls
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--MOBILECONFIG.md4
-rw-r--r--WireGuard/Shared/Model/Endpoint.swift2
2 files changed, 3 insertions, 3 deletions
diff --git a/MOBILECONFIG.md b/MOBILECONFIG.md
index d47edfd..314c57b 100644
--- a/MOBILECONFIG.md
+++ b/MOBILECONFIG.md
@@ -136,5 +136,5 @@ Here's an example WireGuard configuration payload dictionary:
Configurations added via .mobileconfig will not be migrated into keychain until the WireGuard application is opened once.
-[wg-quick(8)]: https://git.zx2c4.com/WireGuard/about/src/tools/man/wg-quick.8
-[wg(8)]: https://git.zx2c4.com/WireGuard/about/src/tools/man/wg.8
+[wg-quick(8)]: https://git.zx2c4.com/wireguard-tools/about/src/man/wg-quick.8
+[wg(8)]: https://git.zx2c4.com/wireguard-tools/about/src/man/wg.8
diff --git a/WireGuard/Shared/Model/Endpoint.swift b/WireGuard/Shared/Model/Endpoint.swift
index ac01649..dad5961 100644
--- a/WireGuard/Shared/Model/Endpoint.swift
+++ b/WireGuard/Shared/Model/Endpoint.swift
@@ -43,7 +43,7 @@ extension Endpoint {
init?(from string: String) {
// Separation of host and port is based on 'parse_endpoint' function in
- // https://git.zx2c4.com/WireGuard/tree/src/tools/config.c
+ // https://git.zx2c4.com/wireguard-tools/tree/src/config.c
guard !string.isEmpty else { return nil }
let startOfPort: String.Index
let hostString: String