2017-01-27 02:18:46 +00:00
|
|
|
(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)
|
|
|
|
// to a host name.
|
|
|
|
|
|
|
|
// FORMAT:
|
|
|
|
// ame ttl class rr name
|
|
|
|
// 15 IN PTR www.example.com.
|
|
|
|
|
|
|
|
exports.DNS_TYPE_PTR = function (rdata) {
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
}('undefined' !== typeof window ? window : exports));
|