mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-06 21:37:38 +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"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"net"
|
"net"
|
||||||
|
"os"
|
||||||
"syscall"
|
"syscall"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -60,8 +61,13 @@ func IsTimeout(err error) bool {
|
||||||
if unwrapErr := errors.Unwrap(err); unwrapErr != nil {
|
if unwrapErr := errors.Unwrap(err); unwrapErr != nil {
|
||||||
err = unwrapErr
|
err = unwrapErr
|
||||||
}
|
}
|
||||||
if opErr, isOpErr := err.(*net.OpError); isOpErr {
|
if ne, ok := err.(*os.SyscallError); ok {
|
||||||
return opErr.Timeout()
|
err = ne.Err
|
||||||
|
}
|
||||||
|
if timeoutErr, isTimeoutErr := err.(interface {
|
||||||
|
Timeout() bool
|
||||||
|
}); isTimeoutErr {
|
||||||
|
return timeoutErr.Timeout()
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue