1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-12 11:38:52 -05:00
v2fly/common/buf/readv_constraint_other.go
2019-05-17 19:57:54 +08:00

10 lines
135 B
Go

// +build !windows
package buf
import "syscall"
func checkReadVConstraint(conn syscall.RawConn) (bool, error) {
return true, nil
}