Xray-core/common/buf/readv_reader_wasm.go
2020-11-25 19:01:53 +08:00

15 lines
182 B
Go

// +build wasm
package buf
import (
"io"
"syscall"
)
const useReadv = false
func NewReadVReader(reader io.Reader, rawConn syscall.RawConn) Reader {
panic("not implemented")
}