22 lines
410 B
JavaScript
22 lines
410 B
JavaScript
(function (exports) {
|
|
'use strict';
|
|
|
|
// TODO. Not yet implemented
|
|
|
|
// Value: Preference
|
|
// Meaning/Use: Unsigned 16-bit integer
|
|
//-------------------------------------
|
|
// Value: Mail Exchanger
|
|
// Meaning/Use: The name host name that provides the service.
|
|
// May be a label, pointer or any combination
|
|
|
|
|
|
exports.DNS_TYPE_MX = function (rdata) {
|
|
|
|
|
|
|
|
};
|
|
|
|
}('undefined' !== typeof window ? window : exports));
|
|
|