readv_reader_windows.go 186 B

1234567891011121314
  1. // +build windows
  2. package buf
  3. import (
  4. "io"
  5. "syscall"
  6. )
  7. const useReadv = false
  8. func NewReadVReader(reader io.Reader, rawConn syscall.RawConn) Reader {
  9. panic("Shoud not happen")
  10. }