mirror of
https://github.com/golang/go
synced 2024-11-15 00:10:28 -07:00
92b74d0940
This change adds TestAcceptIgnoreAbortedConnRequest to test accepting aborted connection requests on all supported platforms except Plan 9. Change-Id: I5936b04085184ff348539962289b1167ec4ac619 Reviewed-on: https://go-review.googlesource.com/19707 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
20 lines
398 B
Go
20 lines
398 B
Go
// 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.
|
|
|
|
package net
|
|
|
|
import "syscall"
|
|
|
|
var (
|
|
errTimedout = syscall.ETIMEDOUT
|
|
errOpNotSupported = syscall.EPLAN9
|
|
|
|
abortedConnRequestErrors []error
|
|
)
|
|
|
|
func isPlatformError(err error) bool {
|
|
_, ok := err.(syscall.ErrorString)
|
|
return ok
|
|
}
|