1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-06-22 02:39:55 -04:00
Files
v2fly/common/buf/readv_reader_windows.go
Darien Raymond b1e07d2f6e fix comments
2018-07-25 11:46:21 +02:00

15 lines
175 B
Go

// +build windows
package buf
import (
"io"
"syscall"
)
var useReadv = false
func NewReadVReader(reader io.Reader, rawConn syscall.RawConn) *ReadVReader {
return nil
}