This repository was archived by the owner on May 20, 2020. It is now read-only.

Description
From my understanding, fdbased link endpoint only supports linux,amd64 mainly because the fd IO is based on file rawfile_unsafe.go, if using "golang.org/x/sys/" package to implement fd IO operation, more OS/arch will be supported.
func Read(fd int, p []byte) (n int, err error)
func Write(fd int, p []byte) (n int, err error)
func SetNonblock(fd int, nonblocking bool) (err error)