wg-quicker/vendor/github.com/mdlayher/netlink/rawconn_gteq_1.12.go

13 lines
146 B
Go
Raw Normal View History

//+build go1.12
package netlink
import (
"os"
"syscall"
)
func newRawConn(fd *os.File) (syscall.RawConn, error) {
return fd.SyscallConn()
}