mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-06 22:17:39 +03:00
Cache default action too
This commit is contained in:
parent
127e9e1b6c
commit
5d14a34414
1 changed files with 2 additions and 0 deletions
|
@ -67,6 +67,7 @@ func (e *Engine) Lookup(domain string, ip net.IP) (Action, string) {
|
||||||
return entry.Action, entry.ActionArg
|
return entry.Action, entry.ActionArg
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
e.Cache.Add(domain, cacheEntry{e.DefaultAction, ""})
|
||||||
return e.DefaultAction, ""
|
return e.DefaultAction, ""
|
||||||
} else if ip != nil {
|
} else if ip != nil {
|
||||||
// IP
|
// IP
|
||||||
|
@ -81,6 +82,7 @@ func (e *Engine) Lookup(domain string, ip net.IP) (Action, string) {
|
||||||
return entry.Action, entry.ActionArg
|
return entry.Action, entry.ActionArg
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
e.Cache.Add(ip.String(), cacheEntry{e.DefaultAction, ""})
|
||||||
return e.DefaultAction, ""
|
return e.DefaultAction, ""
|
||||||
} else {
|
} else {
|
||||||
return e.DefaultAction, ""
|
return e.DefaultAction, ""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue