wireguard-go/rwcancel/select_default.go

15 lines
317 B
Go
Raw Normal View History

2018-05-21 15:27:18 +00:00
// +build !linux
2019-01-02 00:55:51 +00:00
/* SPDX-License-Identifier: MIT
2018-05-14 01:55:46 +00:00
*
2019-01-02 00:55:51 +00:00
* Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
2018-05-14 01:55:46 +00:00
*/
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)
}