mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 11:42:43 +08:00
Fix: fallback & url-test lose efficacy
This commit is contained in:
parent
7a9d986ff3
commit
f99da37168
|
@ -56,16 +56,20 @@ func (p *Proxy) DelayHistory() []C.DelayHistory {
|
|||
return histories
|
||||
}
|
||||
|
||||
// LastDelay return last history record. if proxy is not alive, return the max value of int16.
|
||||
func (p *Proxy) LastDelay() (delay uint16) {
|
||||
var max uint16 = 0xffff
|
||||
if !p.alive {
|
||||
return max
|
||||
}
|
||||
|
||||
head := p.history.First()
|
||||
if head == nil {
|
||||
delay--
|
||||
return
|
||||
return max
|
||||
}
|
||||
history := head.(C.DelayHistory)
|
||||
if history.Delay == 0 {
|
||||
delay--
|
||||
return
|
||||
return max
|
||||
}
|
||||
return history.Delay
|
||||
}
|
||||
|
@ -101,7 +105,7 @@ func (p *Proxy) URLTest(url string) (t uint16, err error) {
|
|||
}
|
||||
|
||||
start := time.Now()
|
||||
instance, err := p.ProxyAdapter.Dial(&addr)
|
||||
instance, err := p.Dial(&addr)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user