aboutsummaryrefslogtreecommitdiffstats
path: root/go.mod
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2020-03-04 17:21:54 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2020-03-17 23:07:11 -0600
commitb33219c2cfd430215f2230c15fc4c2f888a081c2 (patch)
tree433a7a694c35270e239d3705140b49c97d862052 /go.mod
parentsend: account for zero mtu (diff)
downloadwireguard-go-b33219c2cfd430215f2230c15fc4c2f888a081c2.tar.xz
wireguard-go-b33219c2cfd430215f2230c15fc4c2f888a081c2.zip
global: use RTMGRP_* consts from x/sys/unix
Update the golang.org/x/sys/unix dependency and use the newly introduced RTMGRP_* consts instead of using the corresponding RTNLGRP_* const to create a mask. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to '')
-rw-r--r--go.mod2
1 files changed, 1 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index 34b1e72..f4e7b97 100644
--- a/go.mod
+++ b/go.mod
@@ -5,6 +5,6 @@ go 1.12
require (
golang.org/x/crypto v0.0.0-20191002192127-34f69633bfdc
golang.org/x/net v0.0.0-20191003171128-d98b1b443823
- golang.org/x/sys v0.0.0-20191003212358-c178f38b412c
+ golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527
golang.org/x/text v0.3.2
)