Searched refs:rrtype (Results 1 - 4 of 4) sorted by relevance
/third_party/node/lib/internal/dns/ |
H A D | callback_resolver.js | 95 function resolve(hostname, rrtype, callback) { 97 if (typeof rrtype === 'string') { 98 resolver = resolveMap[rrtype]; 99 } else if (typeof rrtype === 'function') { 101 callback = rrtype; 103 throw new ERR_INVALID_ARG_TYPE('rrtype', 'string', rrtype); 109 throw new ERR_INVALID_ARG_VALUE('rrtype', rrtype);
|
H A D | promises.js | 329 function resolve(hostname, rrtype) { 332 if (rrtype !== undefined) { 333 validateString(rrtype, 'rrtype'); 335 resolver = resolveMap[rrtype]; 338 throw new ERR_INVALID_ARG_VALUE('rrtype', rrtype);
|
/third_party/libwebsockets/lib/system/async-dns/ |
H A D | async-dns-parse.c | 159 uint16_t rrtype, rrpaylen; in lws_adns_iterate() local 248 rrtype = lws_ser_ru16be(&p[0]); in lws_adns_iterate() 288 switch (rrtype) { in lws_adns_iterate() 310 cb(stack[0].name, opaque, ttl, rrtype, p); in lws_adns_iterate()
|
/third_party/musl/src/network/ |
H A D | lookup_name.c | 134 int rrtype; member 159 if (rr != ctx->rrtype) return 0; in dns_parse_callback() 285 ctx.rrtype = qtypes[i]; in name_from_dns()
|
Completed in 3 milliseconds