mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-07-23 17:00:22 +00:00
13 lines
166 B
Go
13 lines
166 B
Go
![]() |
package buf
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
"syscall"
|
||
|
)
|
||
|
|
||
|
const useReadv = false
|
||
|
|
||
|
func NewReadVReader(reader io.Reader, rawConn syscall.RawConn) Reader {
|
||
|
panic("not implemented")
|
||
|
}
|