v2ray-core/common/buf/readv_reader_windows.go

15 lines
186 B
Go
Raw Normal View History

2018-07-25 09:19:16 +00:00
// +build windows
2018-07-25 09:46:21 +00:00
2018-07-25 09:19:16 +00:00
package buf
import (
"io"
"syscall"
)
2018-07-27 21:40:12 +00:00
const useReadv = false
2018-07-25 09:19:16 +00:00
2018-07-25 09:51:42 +00:00
func NewReadVReader(reader io.Reader, rawConn syscall.RawConn) Reader {
2018-07-27 21:40:12 +00:00
panic("Shoud not happen")
2018-07-25 09:19:16 +00:00
}