aboutsummaryrefslogtreecommitdiffstats
path: root/device/conn_linux.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-12-30 11:46:34 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2019-12-30 11:53:39 +0100
commit89dd065e53e986234289a0ace66539873be8b075 (patch)
treeb95cd16329a5c9f252892ebd20552cc1cdabeb95 /device/conn_linux.go
parentdevice: SendmsgN mutates the input sockaddr (diff)
downloadwireguard-go-89dd065e53e986234289a0ace66539873be8b075.tar.xz
wireguard-go-89dd065e53e986234289a0ace66539873be8b075.zip
README: update repo urls
Diffstat (limited to '')
-rw-r--r--device/conn_linux.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/device/conn_linux.go b/device/conn_linux.go
index b38aa38..94b6d5c 100644
--- a/device/conn_linux.go
+++ b/device/conn_linux.go
@@ -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