mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 04:47:40 +03:00
Define TimeoutError interface
This commit is contained in:
parent
81484131e3
commit
3acb9463b4
1 changed files with 5 additions and 3 deletions
|
@ -50,6 +50,10 @@ func IsClosed(err error) bool {
|
|||
return IsTimeout(err) || errors.Is(err, io.EOF) || errors.Is(err, net.ErrClosed) || errors.Is(err, syscall.EPIPE)
|
||||
}
|
||||
|
||||
type TimeoutError interface {
|
||||
Timeout() bool
|
||||
}
|
||||
|
||||
func IsTimeout(err error) bool {
|
||||
if unwrapErr := errors.Unwrap(err); unwrapErr != nil {
|
||||
err = unwrapErr
|
||||
|
@ -57,9 +61,7 @@ func IsTimeout(err error) bool {
|
|||
if ne, ok := err.(*os.SyscallError); ok {
|
||||
err = ne.Err
|
||||
}
|
||||
if timeoutErr, isTimeoutErr := err.(interface {
|
||||
Timeout() bool
|
||||
}); isTimeoutErr {
|
||||
if timeoutErr, isTimeoutErr := err.(TimeoutError); isTimeoutErr {
|
||||
return timeoutErr.Timeout()
|
||||
}
|
||||
return false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue