20 lines
354 B
JavaScript
20 lines
354 B
JavaScript
(function (exports) {
|
|
'use strict';
|
|
|
|
// TODO. Not yet implemented
|
|
|
|
// A CNAME reocord maps a single alias or nickname to the real or
|
|
// Canonical name which may lie outside the current zone.
|
|
// Canonical simply means the expected or real name.
|
|
|
|
|
|
|
|
exports.DNS_TYPE_CNAME = function (rdata) {
|
|
|
|
|
|
|
|
};
|
|
|
|
}('undefined' !== typeof window ? window : exports));
|
|
|