mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +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
|
|
}
|