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