mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-01 08:48:54 -04:00
2a96605138
Previously v2ray can not be built on illumos due to following reasons: 1. missing build tags in transport/internet/sockopt_other.go 2. many definitions in syscall does not exist on illumos This commit addresses these problems by adding missing build tags, and updates those missing syscall deps on illumos to use x/sys/unix.
48 lines
823 B
Go
48 lines
823 B
Go
// +build !windows
|
|
// +build !wasm
|
|
// +build !illumos
|
|
|
|
package buf
|
|
|
|
import (
|
|
"syscall"
|
|
"unsafe"
|
|
)
|
|
|
|
type posixReader struct {
|
|
iovecs []syscall.Iovec
|
|
}
|
|
|
|
func (r *posixReader) Init(bs []*Buffer) {
|
|
iovecs := r.iovecs
|
|
if iovecs == nil {
|
|
iovecs = make([]syscall.Iovec, 0, len(bs))
|
|
}
|
|
for idx, b := range bs {
|
|
iovecs = append(iovecs, syscall.Iovec{
|
|
Base: &(b.v[0]),
|
|
})
|
|
iovecs[idx].SetLen(int(Size))
|
|
}
|
|
r.iovecs = iovecs
|
|
}
|
|
|
|
func (r *posixReader) Read(fd uintptr) int32 {
|
|
n, _, e := syscall.Syscall(syscall.SYS_READV, fd, uintptr(unsafe.Pointer(&r.iovecs[0])), uintptr(len(r.iovecs)))
|
|
if e != 0 {
|
|
return -1
|
|
}
|
|
return int32(n)
|
|
}
|
|
|
|
func (r *posixReader) Clear() {
|
|
for idx := range r.iovecs {
|
|
r.iovecs[idx].Base = nil
|
|
}
|
|
r.iovecs = r.iovecs[:0]
|
|
}
|
|
|
|
func newMultiReader() multiReader {
|
|
return &posixReader{}
|
|
}
|