dns-suite.js/dns.type.ptr.js

18 lines
404 B
JavaScript

(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));