mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-08-16 12:37:23 +00:00
14 lines
174 B
Go
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
|
||
|
}
|