798502b204
This makes a framework for adding temporary errors identified by syscall number or by error string. Fixes #1660
9 lines
235 B
Go
9 lines
235 B
Go
// +build plan9
|
|
|
|
package fs
|
|
|
|
// isClosedConnErrorPlatform reports whether err is an error from use
|
|
// of a closed network connection using platform specific error codes.
|
|
func isClosedConnErrorPlatform(err error) bool {
|
|
return false
|
|
}
|