mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
Fix default dns transport strategy
This commit is contained in:
parent
a2d2ec9b45
commit
22a22aebe2
|
@ -37,7 +37,11 @@ func (r *Router) matchDNS(ctx context.Context) (context.Context, dns.Transport,
|
||||||
r.dnsLogger.ErrorContext(ctx, "transport not found: ", detour)
|
r.dnsLogger.ErrorContext(ctx, "transport not found: ", detour)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return ctx, r.defaultTransport, r.defaultDomainStrategy
|
if domainStrategy, dsLoaded := r.transportDomainStrategy[r.defaultTransport]; dsLoaded {
|
||||||
|
return ctx, r.defaultTransport, domainStrategy
|
||||||
|
} else {
|
||||||
|
return ctx, r.defaultTransport, r.defaultDomainStrategy
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *Router) Exchange(ctx context.Context, message *mDNS.Msg) (*mDNS.Msg, error) {
|
func (r *Router) Exchange(ctx context.Context, message *mDNS.Msg) (*mDNS.Msg, error) {
|
||||||
|
|
Loading…
Reference in a new issue