clean up
This commit is contained in:
parent
41410f8f86
commit
59d27abafa
|
@ -1,6 +1,6 @@
|
||||||
(function (exports) {
|
(function (exports) {
|
||||||
'use strict';
|
'use strict';
|
||||||
// TODO. Not yet implemented
|
|
||||||
|
|
||||||
// Meaning:Use: Requests ANY resource record (typicall wants SOA,
|
// Meaning:Use: Requests ANY resource record (typicall wants SOA,
|
||||||
// MX, NS, and MX)
|
// MX, NS, and MX)
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
(function (exports) {
|
(function (exports) {
|
||||||
'use strict';
|
'use strict';
|
||||||
// TODO. Not yet implemented
|
|
||||||
|
|
||||||
// Pointer records are the opposite of A and AAAA and are
|
// 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)
|
// used in Reverse Map zone files to map an IP address (IPv4 or IPv6)
|
||||||
|
|
|
@ -1,17 +1,20 @@
|
||||||
(function (exports) {
|
(function (exports) {
|
||||||
'use strict';
|
'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) {
|
exports.DNS_TYPE_SOA = function (ab, packet, record) {
|
||||||
|
|
||||||
var s = {
|
|
||||||
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue