diff --git a/dns.type.any.js b/dns.type.any.js index 398da49..69a9e51 100644 --- a/dns.type.any.js +++ b/dns.type.any.js @@ -1,6 +1,6 @@ (function (exports) { 'use strict'; -// TODO. Not yet implemented + // Meaning:Use: Requests ANY resource record (typicall wants SOA, // MX, NS, and MX) diff --git a/dns.type.ptr.js b/dns.type.ptr.js index a389929..38bf195 100644 --- a/dns.type.ptr.js +++ b/dns.type.ptr.js @@ -1,6 +1,5 @@ (function (exports) { 'use strict'; -// TODO. Not yet implemented // Pointer records are the opposite of A and AAAA and are // used in Reverse Map zone files to map an IP address (IPv4 or IPv6) diff --git a/dns.type.soa.js b/dns.type.soa.js index 8d77fc0..0557151 100644 --- a/dns.type.soa.js +++ b/dns.type.soa.js @@ -1,17 +1,20 @@ (function (exports) { 'use strict'; +// TODO. Not yet implemented + +// Value Meaning/Use +// Primary NS Variable length. The name of the Primary Master for the domain. May be a label, pointer, or any combination +// Admin MB Variable length. The administrator's mailbox. May be a label, pointer, or any combination +// Serial Number Unsigned 32-bit integer +// Refresh Interval Unsigned 32-bit integer +// Retry Interval Unsigned 32-bit integer +// Retry Interval Unsigned 32-bit integer +// Expiration Limit Unsigned 32-bit integer +// Minimum TTL Unsigned 32-bit integer exports.DNS_TYPE_SOA = function (ab, packet, record) { - - var s = { - - - }; - - - };