mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +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
|
||||
}
|
||||
}
|
||||
e.Cache.Add(domain, cacheEntry{e.DefaultAction, ""})
|
||||
return e.DefaultAction, ""
|
||||
} else if ip != nil {
|
||||
// IP
|
||||
|
@ -81,6 +82,7 @@ func (e *Engine) Lookup(domain string, ip net.IP) (Action, string) {
|
|||
return entry.Action, entry.ActionArg
|
||||
}
|
||||
}
|
||||
e.Cache.Add(ip.String(), cacheEntry{e.DefaultAction, ""})
|
||||
return e.DefaultAction, ""
|
||||
} else {
|
||||
return e.DefaultAction, ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue