mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-05-08 14:13:22 +00:00
https://github.com/XTLS/Xray-core/pull/5784#issuecomment-4024880917 https://github.com/XTLS/Xray-core/issues/5756#issuecomment-4015530258 https://github.com/XTLS/Xray-core/pull/5824#issuecomment-4103829456
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")
|
|
}
|