diff options
Diffstat (limited to 'src/net/error_plan9_test.go')
| -rw-r--r-- | src/net/error_plan9_test.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/net/error_plan9_test.go b/src/net/error_plan9_test.go index 1270af19e5..aa3912c332 100644 --- a/src/net/error_plan9_test.go +++ b/src/net/error_plan9_test.go @@ -21,3 +21,11 @@ func isPlatformError(err error) bool { func isENOBUFS(err error) bool { return false // ENOBUFS is Unix-specific } + +func isECONNRESET(err error) bool { + return false // ECONNRESET is Unix-specific +} + +func isWSAECONNREFUSED(err error) bool { + return false // WSAECONNREFUSED is Windows-specific +} |
