mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 21:07:41 +03:00
Fix isTimeout
This commit is contained in:
parent
82e1dc7058
commit
0a8e8d675f
1 changed files with 8 additions and 2 deletions
|
@ -5,6 +5,7 @@ import (
|
|||
"fmt"
|
||||
"io"
|
||||
"net"
|
||||
"os"
|
||||
"syscall"
|
||||
)
|
||||
|
||||
|
@ -60,8 +61,13 @@ func IsTimeout(err error) bool {
|
|||
if unwrapErr := errors.Unwrap(err); unwrapErr != nil {
|
||||
err = unwrapErr
|
||||
}
|
||||
if opErr, isOpErr := err.(*net.OpError); isOpErr {
|
||||
return opErr.Timeout()
|
||||
if ne, ok := err.(*os.SyscallError); ok {
|
||||
err = ne.Err
|
||||
}
|
||||
if timeoutErr, isTimeoutErr := err.(interface {
|
||||
Timeout() bool
|
||||
}); isTimeoutErr {
|
||||
return timeoutErr.Timeout()
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue