13 lines
253 B
JavaScript
13 lines
253 B
JavaScript
|
(function (exports) {
|
||
|
'use strict';
|
||
|
// TODO. Not yet implemented
|
||
|
|
||
|
// Meaning:Use: Requests ANY resource record (typicall wants SOA,
|
||
|
// MX, NS, and MX)
|
||
|
|
||
|
exports.DNS_TYPE_ANY = function (rdata) {
|
||
|
|
||
|
|
||
|
};
|
||
|
}('undefined' !== typeof window ? window : exports));
|