*Abort processGlue is we are not looking for an A, CNAME, or NS record
This commit is contained in:
parent
c6ca4f81ca
commit
179b7831b2
|
@ -204,6 +204,13 @@ export default class Handshake extends AbstractResolverModule {
|
||||||
options: ResolverOptions,
|
options: ResolverOptions,
|
||||||
bypassCache: boolean
|
bypassCache: boolean
|
||||||
) {
|
) {
|
||||||
|
if (
|
||||||
|
![DNS_RECORD_TYPE.A, DNS_RECORD_TYPE.CNAME, DNS_RECORD_TYPE.NS].includes(
|
||||||
|
options.type
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (isDomain(record.ns) && isIp(record.address)) {
|
if (isDomain(record.ns) && isIp(record.address)) {
|
||||||
let results = await this.resolver.resolve(
|
let results = await this.resolver.resolve(
|
||||||
domain,
|
domain,
|
||||||
|
|
Loading…
Reference in New Issue