mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 11:42:43 +08:00
Fix: fake-ip-filter on fakeip mode should lookup ip-host mapping (#743)
This commit is contained in:
parent
a924dd325c
commit
30b4a7f6dc
|
@ -121,7 +121,7 @@ func (r *Resolver) exchangeWithoutCache(m *D.Msg) (msg *D.Msg, err error) {
|
|||
}
|
||||
|
||||
putMsgToCache(r.lruCache, q.String(), msg)
|
||||
if r.mapping {
|
||||
if r.mapping || r.fakeip {
|
||||
ips := r.msgToIP(msg)
|
||||
for _, ip := range ips {
|
||||
putMsgToCache(r.lruCache, ip.String(), msg)
|
||||
|
@ -151,7 +151,10 @@ func (r *Resolver) exchangeWithoutCache(m *D.Msg) (msg *D.Msg, err error) {
|
|||
// IPToHost return fake-ip or redir-host mapping host
|
||||
func (r *Resolver) IPToHost(ip net.IP) (string, bool) {
|
||||
if r.fakeip {
|
||||
return r.pool.LookBack(ip)
|
||||
record, existed := r.pool.LookBack(ip)
|
||||
if existed {
|
||||
return record, true
|
||||
}
|
||||
}
|
||||
|
||||
cache, _ := r.lruCache.Get(ip.String())
|
||||
|
|
Loading…
Reference in New Issue
Block a user