]> git.ipfire.org Git - thirdparty/wireguard-apple.git/commitdiff
Update repo urls
authorJason A. Donenfeld <Jason@zx2c4.com>
Mon, 30 Dec 2019 10:54:13 +0000 (11:54 +0100)
committerJason A. Donenfeld <Jason@zx2c4.com>
Mon, 30 Dec 2019 10:54:13 +0000 (11:54 +0100)
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
MOBILECONFIG.md
WireGuard/Shared/Model/Endpoint.swift

index d47edfd9798d6263a581b185295eca1ecc4982bb..314c57bdcd6982e3972422db41be54654f5dc630 100644 (file)
@@ -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
index ac0164966f182ed24a0991595b855b37a3ea3919..dad59617f53c0ded3114a18f2831f7fb72f62768 100644 (file)
@@ -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