mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-07-16 01:48:49 +00:00
d5bc58dc6b
https://github.com/XTLS/Xray-core/pull/6400#issuecomment-4880198100 https://github.com/XTLS/Xray-core/pull/6400#issuecomment-4916892425 https://github.com/XTLS/Xray-core/pull/6400#issuecomment-4929136670
20 lines
301 B
Go
20 lines
301 B
Go
//go:build wasm || openbsd
|
|
// +build wasm openbsd
|
|
|
|
package buf
|
|
|
|
import (
|
|
"io"
|
|
"syscall"
|
|
|
|
"github.com/xtls/xray-core/features/stats"
|
|
)
|
|
|
|
func useReadV() bool {
|
|
return false
|
|
}
|
|
|
|
func NewReadVReader(reader io.Reader, rawConn syscall.RawConn, counter stats.Counter) Reader {
|
|
panic("not implemented")
|
|
}
|