mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
798502b204
This makes a framework for adding temporary errors identified by syscall number or by error string. Fixes #1660
10 lines
235 B
Go
10 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
|
|
}
|