1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-07 13:54:27 -04:00
v2fly/common/buf/readv_reader_wasm.go

15 lines
182 B
Go
Raw Normal View History

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