1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-02 23:47:07 -05:00
v2fly/common/buf/readv_reader_windows.go
2018-07-25 11:19:16 +02:00

14 lines
174 B
Go

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