found bug. Changed the AAAA hex value.

This commit is contained in:
Daplie 2017-01-26 18:37:15 -07:00
parent 51e1cae5a2
commit 90e8ab6f0b
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ var types = exports.DNS_TYPES = {
, PTR: 0x0c // 12 , PTR: 0x0c // 12
, MX: 0x0f // 15 , MX: 0x0f // 15
, TXT: 0x10 // 16 , TXT: 0x10 // 16
, AAAA: 0x16 // 28 , AAAA: 0x1c // 28
, SRV: 0x21 // 33 , SRV: 0x21 // 33
, ANY: 0xff // 255 , ANY: 0xff // 255
}; };
@ -18,4 +18,4 @@ Object.keys(types).forEach(function (key) {
types[types[key]] = key; types[types[key]] = key;
}); });
}('undefined' !== typeof window ? window : exports)); }('undefined' !== typeof window ? window : exports));