mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 14:13:03 +00:00
16 lines
198 B
Go
16 lines
198 B
Go
//go:build wasm
|
|
// +build wasm
|
|
|
|
package buf
|
|
|
|
import (
|
|
"io"
|
|
"syscall"
|
|
)
|
|
|
|
const useReadv = false
|
|
|
|
func NewReadVReader(reader io.Reader, rawConn syscall.RawConn) Reader {
|
|
panic("not implemented")
|
|
}
|