rclone/fs/closed_conn.go
2016-04-29 17:29:34 +01:00

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
}