readv_constraint_other.go 135 B

123456789
  1. // +build !windows
  2. package buf
  3. import "syscall"
  4. func checkReadVConstraint(conn syscall.RawConn) (bool, error) {
  5. return true, nil
  6. }