mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 14:43:03 +00: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")
|
||
|
}
|