mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
Add multi error
This commit is contained in:
parent
f00396c60e
commit
f8356c256f
10 changed files with 141 additions and 102 deletions
23
common/exceptions/timeout.go
Normal file
23
common/exceptions/timeout.go
Normal file
|
@ -0,0 +1,23 @@
|
|||
package exceptions
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"os"
|
||||
)
|
||||
|
||||
type TimeoutError interface {
|
||||
Timeout() bool
|
||||
}
|
||||
|
||||
func IsTimeout(err error) bool {
|
||||
if unwrapErr := errors.Unwrap(err); unwrapErr != nil {
|
||||
err = unwrapErr
|
||||
}
|
||||
if ne, ok := err.(*os.SyscallError); ok {
|
||||
err = ne.Err
|
||||
}
|
||||
if timeoutErr, isTimeoutErr := err.(TimeoutError); isTimeoutErr {
|
||||
return timeoutErr.Timeout()
|
||||
}
|
||||
return false
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue