v2ray-core/common/buf/readv_constraint_other.go
2019-05-18 15:09:58 +08:00

10 lines
135 B
Go

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