mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-07 02:38:10 -05:00
15 lines
182 B
Go
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")
|
|
}
|