1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 02:35:23 +00:00
v2fly/common/buf/readv_reader_wasm.go

15 lines
182 B
Go
Raw Normal View History

2018-08-31 12:23:42 +00:00
// +build wasm
2018-08-27 18:56:49 +00:00
package buf
import (
"io"
"syscall"
)
const useReadv = false
func NewReadVReader(reader io.Reader, rawConn syscall.RawConn) Reader {
panic("not implemented")
}