Merge pull request #669 from AkinoKaede/fix-cannot-disable-readv

Fix cannot disable ReadV
This commit is contained in:
Arthur Morgan 2021-09-08 00:53:00 +08:00 committed by GitHub
commit 0403e6ddc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,6 @@ package buf
import (
"io"
"runtime"
"syscall"
"github.com/xtls/xray-core/common/platform"
@ -134,17 +133,13 @@ func (r *ReadVReader) ReadMultiBuffer() (MultiBuffer, error) {
return mb, nil
}
var useReadv = true
var useReadv bool
func init() {
const defaultFlagValue = "NOT_DEFINED_AT_ALL"
value := platform.NewEnvFlag("xray.buf.readv").GetValue(func() string { return defaultFlagValue })
switch value {
case defaultFlagValue, "auto":
if (runtime.GOARCH == "386" || runtime.GOARCH == "amd64" || runtime.GOARCH == "s390x") && (runtime.GOOS == "linux" || runtime.GOOS == "darwin" || runtime.GOOS == "windows") {
useReadv = true
}
case "enable":
case defaultFlagValue, "auto", "enable":
useReadv = true
}
}