| // Copyright 2015 The Go Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| // +build !plan9,!windows |
| errTimedout = syscall.ETIMEDOUT |
| errOpNotSupported = syscall.EOPNOTSUPP |
| abortedConnRequestErrors = []error{syscall.ECONNABORTED} // see accept in fd_unix.go |
| func isPlatformError(err error) bool { |
| _, ok := err.(syscall.Errno) |
| func samePlatformError(err, want error) bool { |
| if op, ok := err.(*OpError); ok { |
| if sys, ok := err.(*os.SyscallError); ok { |