fix(dnssec): fix DNSSEC by adding TCP fallback to DoUDP

This commit is contained in:
2026-07-12 00:30:05 +01:00
parent e847b94474
commit c330fa6289
7 changed files with 84 additions and 30 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ func New(upstream string, opts Options) (DNSClient, error) {
}
// With DNSSEC, wrap the base client with a validating client.
return NewValidating(baseClient, opts), nil
return NewDNSSECClient(baseClient, opts), nil
}
func createClientFromURL(parsedURL *url.URL, opts Options) (DNSClient, error) {