From 90e8ab6f0bb45e412ede3d59fb65861eb8fec02d Mon Sep 17 00:00:00 2001 From: Daplie Date: Thu, 26 Jan 2017 18:37:15 -0700 Subject: [PATCH] found bug. Changed the AAAA hex value. --- dns.types.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dns.types.js b/dns.types.js index 0e1abae..1e807c2 100644 --- a/dns.types.js +++ b/dns.types.js @@ -9,7 +9,7 @@ var types = exports.DNS_TYPES = { , PTR: 0x0c // 12 , MX: 0x0f // 15 , TXT: 0x10 // 16 -, AAAA: 0x16 // 28 +, AAAA: 0x1c // 28 , SRV: 0x21 // 33 , ANY: 0xff // 255 }; @@ -18,4 +18,4 @@ Object.keys(types).forEach(function (key) { types[types[key]] = key; }); -}('undefined' !== typeof window ? window : exports)); +}('undefined' !== typeof window ? window : exports)); \ No newline at end of file