Files
Xray-core/common/buf/readv_reader_stub.go
T

18 lines
285 B
Go
Raw Normal View History

2026-03-23 15:57:35 +08:00
//go:build wasm || openbsd
// +build wasm openbsd
package buf
import (
"io"
"syscall"
"github.com/xtls/xray-core/features/stats"
)
const useReadv = false
func NewReadVReader(reader io.Reader, rawConn syscall.RawConn, counter stats.Counter) Reader {
panic("not implemented")
}