aboutsummaryrefslogtreecommitdiffstats
path: root/rwcancel/select_default.go
diff options
context:
space:
mode:
authorDavid Crawshaw <crawshaw@tailscale.com>2020-02-19 10:09:24 -0500
committerDavid Crawshaw <david@zentus.com>2020-03-30 18:41:39 +1100
commit224bc9e60c7e2e1f04573bc377121c8f844d57c6 (patch)
tree60fdd0c2b3fa628cea3cc7d877d11eed1fdccf57 /rwcancel/select_default.go
parentratelimiter: use a fake clock in tests and style cleanups (diff)
downloadwireguard-go-224bc9e60c7e2e1f04573bc377121c8f844d57c6.tar.xz
wireguard-go-224bc9e60c7e2e1f04573bc377121c8f844d57c6.zip
rwcancel: no-op builds for windows and darwin
This lets us include the package on those platforms in a followup commit where we split out a conn package from device. It also lets us run `go test ./...` when developing on macOS. Signed-off-by: David Crawshaw <crawshaw@tailscale.com>
Diffstat (limited to '')
-rw-r--r--rwcancel/select_default.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/rwcancel/select_default.go b/rwcancel/select_default.go
index dd23cda..82e07dc 100644
--- a/rwcancel/select_default.go
+++ b/rwcancel/select_default.go
@@ -1,4 +1,4 @@
-// +build !linux
+// +build !linux,!windows
/* SPDX-License-Identifier: MIT
*
@@ -10,5 +10,6 @@ package rwcancel
import "golang.org/x/sys/unix"
func unixSelect(nfd int, r *unix.FdSet, w *unix.FdSet, e *unix.FdSet, timeout *unix.Timeval) error {
- return unix.Select(nfd, r, w, e, timeout)
+ _, err := unix.Select(nfd, r, w, e, timeout)
+ return err
}