Fix: redir-host should lookup hosts
This commit is contained in:
parent
2a7caf794f
commit
40832885c4
1 changed files with 3 additions and 0 deletions
|
@ -147,6 +147,9 @@ func preHandleMetadata(metadata *C.Metadata) error {
|
||||||
metadata.AddrType = C.AtypDomainName
|
metadata.AddrType = C.AtypDomainName
|
||||||
if enhancedMode.FakeIPEnabled() {
|
if enhancedMode.FakeIPEnabled() {
|
||||||
metadata.DstIP = nil
|
metadata.DstIP = nil
|
||||||
|
} else if node := resolver.DefaultHosts.Search(host); node != nil {
|
||||||
|
// redir-host should lookup the hosts
|
||||||
|
metadata.DstIP = node.Data.(net.IP)
|
||||||
}
|
}
|
||||||
} else if enhancedMode.IsFakeIP(metadata.DstIP) {
|
} else if enhancedMode.IsFakeIP(metadata.DstIP) {
|
||||||
return fmt.Errorf("fake DNS record %s missing", metadata.DstIP)
|
return fmt.Errorf("fake DNS record %s missing", metadata.DstIP)
|
||||||
|
|
Loading…
Reference in a new issue