libgo: update to Go 1.11
[official-gcc.git] / libgo / go / net / error_unix.go
blobb5a5829eaa0837aa32e79b2a901beb8bd9287edd
1 // Copyright 2018 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // +build darwin dragonfly freebsd js linux netbsd openbsd solaris
7 package net
9 import "syscall"
11 func isConnError(err error) bool {
12 if se, ok := err.(syscall.Errno); ok {
13 return se == syscall.ECONNRESET || se == syscall.ECONNABORTED
15 return false