add A record parser

This commit is contained in:
AJ ONeal 2017-01-21 14:39:26 -07:00
parent 96a851e5ad
commit 267342c82c
2 changed files with 12 additions and 1 deletions

View File

@ -27,7 +27,7 @@ exports.DNS_RDATA_PARSE = function (ab, packet, record) {
try {
parser = exports['DNS_TYPE_' + record.typeName]
|| require('./dns.type.' + record.typeName.toLowerCase());
|| require('./dns.type.' + record.typeName.toLowerCase())['DNS_TYPE_' + record.typeName];
}
catch (e) { /*console.error(e)*/ }

11
dns.type.a.js Normal file
View File

@ -0,0 +1,11 @@
(function (exports) {
'use strict';
exports.DNS_TYPE_A = function (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));