v2ray-core/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
}