mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 12:27:37 +03:00
Fix E.IsTimeout check
This commit is contained in:
parent
121c0b14e4
commit
cee74ef1f4
1 changed files with 7 additions and 1 deletions
|
@ -1,11 +1,17 @@
|
|||
package exceptions
|
||||
|
||||
import "net"
|
||||
|
||||
type TimeoutError interface {
|
||||
Timeout() bool
|
||||
}
|
||||
|
||||
func IsTimeout(err error) bool {
|
||||
if timeoutErr, isTimeout := Cast[TimeoutError](err); isTimeout {
|
||||
if netErr, isNetErr := err.(net.Error); isNetErr {
|
||||
//goland:noinspection GoDeprecation
|
||||
//nolint:staticcheck
|
||||
return netErr.Temporary() && netErr.Timeout()
|
||||
} else if timeoutErr, isTimeout := Cast[TimeoutError](err); isTimeout {
|
||||
return timeoutErr.Timeout()
|
||||
}
|
||||
return false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue