rclone/fs/fserrors/closed_conn_unsupported.go

10 lines
241 B
Go

// +build plan9
package fserrors
// 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
}