dns-suite.js/dns.type.a.js

14 lines
329 B
JavaScript

(function (exports) {
'use strict';
// An 'A' record is a 32-bit value representing the IP address
exports.DNS_TYPE_A = function (ab, packet, rdata) {
var ui8 = new Uint8Array(rdata);
// i.e. 127.0.0.1
return ui8[0] + '.' + ui8[1] + '.' + ui8[2] + '.' + ui8[3];
};
}('undefined' !== typeof window ? window : exports));