mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-05-14 10:00:34 +00:00
18 lines
285 B
Go
18 lines
285 B
Go
|
|
//go:build wasm || openbsd
|
||
|
|
// +build wasm openbsd
|
||
|
|
|
||
|
|
package buf
|
||
|
|
|
||
|
|
import (
|
||
|
|
"io"
|
||
|
|
"syscall"
|
||
|
|
|
||
|
|
"github.com/xtls/xray-core/features/stats"
|
||
|
|
)
|
||
|
|
|
||
|
|
const useReadv = false
|
||
|
|
|
||
|
|
func NewReadVReader(reader io.Reader, rawConn syscall.RawConn, counter stats.Counter) Reader {
|
||
|
|
panic("not implemented")
|
||
|
|
}
|