/* * http://tools.ietf.org/rfc/rfc1348.txt * The NSAP-PTR RR The NSAP-PTR RR is defined with mnemonic NSAP-PTR and a type code 23 (decimal). Its function is analogous to the PTR record used for IP addresses [4,7]. NSAP-PTR has the following format: NSAP-PTR All fields are required. enumerates the actual octet values assigned by the assigning authority for the LOCAL network. Its format in master files is a syntactically identical to that used in TXT and HINFO. The format of NSAP-PTR is class insensitive. NSAP-PTR RR causes no additional section processing. For example: In net ff08000574.nsap-in-addr.arpa: 444433332222111199990123000000ff NSAP-PTR foo.bar.com. Or in net 11110031f67293.nsap-in-addr.arpa: 67894444333322220000 NSAP-PTR host.school.de. The RR data is the ASCII representation of the digits. It is encoded as a . */ using MailSharp.DNS.Records; namespace MailSharp.DNS.Records; public record RecordNSAPPTR : DnsRecord // RFC 1348, later RFC 2915 (ARCHIVED) { public string NextDomain { get; init; } = string.Empty; public RecordNSAPPTR(RecordReader rr) : base(rr) { NextDomain = rr.ReadDomainName(); } public override string ToString() => NextDomain; }