From 224bc9e60c7e2e1f04573bc377121c8f844d57c6 Mon Sep 17 00:00:00 2001 From: David Crawshaw Date: Wed, 19 Feb 2020 10:09:24 -0500 Subject: 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 --- rwcancel/rwcancel.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'rwcancel/rwcancel.go') diff --git a/rwcancel/rwcancel.go b/rwcancel/rwcancel.go index 808e691..3c4a9ed 100644 --- a/rwcancel/rwcancel.go +++ b/rwcancel/rwcancel.go @@ -1,8 +1,12 @@ +// +build !windows + /* SPDX-License-Identifier: MIT * * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved. */ +// Package rwcancel implements cancelable read/write operations on +// a file descriptor. package rwcancel import ( -- cgit v1.2.3