mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 09:35:26 +01:00
7fe653c350
Include more possible errors for Windows. For #442
35 lines
847 B
Go
35 lines
847 B
Go
// +build windows
|
|
|
|
package fs
|
|
|
|
import (
|
|
"net"
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
// isClosedConnErrorPlatform reports whether err is an error from use
|
|
// of a closed network connection using platform specific error codes.
|
|
//
|
|
// Code adapted from net/http
|
|
func isClosedConnErrorPlatform(err error) bool {
|
|
if oe, ok := err.(*net.OpError); ok {
|
|
if se, ok := oe.Err.(*os.SyscallError); ok {
|
|
if errno, ok := se.Err.(syscall.Errno); ok {
|
|
const (
|
|
WSAECONNABORTED syscall.Errno = 10053
|
|
WSAHOST_NOT_FOUND syscall.Errno = 11001
|
|
WSATRY_AGAIN syscall.Errno = 11002
|
|
WSAENETRESET syscall.Errno = 10052
|
|
WSAETIMEDOUT syscall.Errno = 10060
|
|
)
|
|
switch errno {
|
|
case syscall.WSAECONNRESET, WSAECONNABORTED, WSAHOST_NOT_FOUND, WSATRY_AGAIN, WSAENETRESET, WSAETIMEDOUT:
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return false
|
|
}
|