mirror of
https://github.com/rclone/rclone
synced 2024-11-14 13:36:24 +01:00
1752ee3c8b
See discussion in #442
10 lines
238 B
Go
10 lines
238 B
Go
// +build !windows
|
|
|
|
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
|
|
}
|