mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
Skip internal fake-ip queries
This commit is contained in:
parent
38d28e0763
commit
a99deb2cb5
2 changed files with 7 additions and 4 deletions
|
@ -261,6 +261,9 @@ func NewRouter(
|
|||
}
|
||||
defaultTransport = transports[0]
|
||||
}
|
||||
if _, isFakeIP := defaultTransport.(adapter.FakeIPTransport); isFakeIP {
|
||||
return nil, E.New("default DNS server cannot be fakeip")
|
||||
}
|
||||
router.defaultTransport = defaultTransport
|
||||
router.transports = transports
|
||||
router.transportMap = transportMap
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue