Xray-core/common/buf/readv_reader_wasm.go

16 lines
198 B
Go
Raw Normal View History

2021-09-20 16:00:55 +03:00
//go:build wasm
2020-11-25 13:01:53 +02:00
// +build wasm
package buf
import (
"io"
"syscall"
)
const useReadv = false
func NewReadVReader(reader io.Reader, rawConn syscall.RawConn) Reader {
panic("not implemented")
}