mirror of
https://github.com/v2fly/v2ray-core.git
synced 2026-06-04 10:19:06 -04:00
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
|
|
}
|