mirror of https://github.com/v2ray/v2ray-core
10 lines
135 B
Go
10 lines
135 B
Go
![]() |
// +build !windows
|
||
|
|
||
|
package buf
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
func checkReadVConstraint(conn syscall.RawConn) (bool, error) {
|
||
|
return true, nil
|
||
|
}
|