]> git.ipfire.org Git - thirdparty/wireguard-go.git/commitdiff
README: update repo urls
authorJason A. Donenfeld <Jason@zx2c4.com>
Mon, 30 Dec 2019 10:46:34 +0000 (11:46 +0100)
committerJason A. Donenfeld <Jason@zx2c4.com>
Mon, 30 Dec 2019 10:53:39 +0000 (11:53 +0100)
README.md
device/conn_linux.go

index d73bf59c0acdc4c94f499517f6a3c5c54a8d44ba..cbcfb0513ed5bfa0c7813ab5c57fa3509144fc9b 100644 (file)
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ To run wireguard-go without forking to the background, pass `-f` or `--foregroun
 $ wireguard-go -f wg0
 ```
 
-When an interface is running, you may use [`wg(8)`](https://git.zx2c4.com/WireGuard/about/src/tools/man/wg.8) to configure it, as well as the usual `ip(8)` and `ifconfig(8)` commands.
+When an interface is running, you may use [`wg(8)`](https://git.zx2c4.com/wireguard-tools/about/src/man/wg.8) to configure it, as well as the usual `ip(8)` and `ifconfig(8)` commands.
 
 To run with more logging you may set the environment variable `LOG_LEVEL=debug`.
 
index b38aa38ea5276798c254957a12516cd65b80f5b0..94b6d5c072c7d12410d1cbb281263c49b9f1cb6b 100644 (file)
@@ -7,7 +7,7 @@
  * This implements userspace semantics of "sticky sockets", modeled after
  * WireGuard's kernelspace implementation. This is more or less a straight port
  * of the sticky-sockets.c example code:
- * https://git.zx2c4.com/WireGuard/tree/contrib/examples/sticky-sockets/sticky-sockets.c
+ * https://git.zx2c4.com/wireguard-tools/tree/contrib/sticky-sockets/sticky-sockets.c
  *
  * Currently there is no way to achieve this within the net package:
  * See e.g. https://github.com/golang/go/issues/17930