doSearchDomainQuery() — netty Function Reference
Architecture documentation for the doSearchDomainQuery() function in DnsAddressResolveContext.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 8d1b4bee_8101_abc4_0959_52cf92a5a0e5["doSearchDomainQuery()"] ecc9a400_9a8f_522b_49a1_d52a56e2a092["DnsAddressResolveContext"] 8d1b4bee_8101_abc4_0959_52cf92a5a0e5 -->|defined in| ecc9a400_9a8f_522b_49a1_d52a56e2a092 style 8d1b4bee_8101_abc4_0959_52cf92a5a0e5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
resolver-dns/src/main/java/io/netty/resolver/dns/DnsAddressResolveContext.java lines 95–102
@Override
void doSearchDomainQuery(String hostname, Promise<List<InetAddress>> nextPromise) {
// Query the cache for the hostname first and only do a query if we could not find it in the cache.
if (!DnsNameResolver.doResolveAllCached(hostname, additionals, nextPromise, resolveCache,
parent.searchDomains(), parent.ndots(), parent.resolvedInternetProtocolFamiliesUnsafe())) {
super.doSearchDomainQuery(hostname, nextPromise);
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does doSearchDomainQuery() do?
doSearchDomainQuery() is a function in the netty codebase, defined in resolver-dns/src/main/java/io/netty/resolver/dns/DnsAddressResolveContext.java.
Where is doSearchDomainQuery() defined?
doSearchDomainQuery() is defined in resolver-dns/src/main/java/io/netty/resolver/dns/DnsAddressResolveContext.java at line 95.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free