mirror of
https://git.zx2c4.com/wireguard-go
synced 2024-11-15 01:05:15 +01:00
14 lines
315 B
Go
14 lines
315 B
Go
/* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
|
|
*/
|
|
|
|
package rwcancel
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func unixSelect(nfd int, r *unix.FdSet, w *unix.FdSet, e *unix.FdSet, timeout *unix.Timeval) (err error) {
|
|
_, err = unix.Select(nfd, r, w, e, timeout)
|
|
return
|
|
}
|