Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

net::dns::rr::nsap5.18(3) [mojave man page]

Net::DNS::RR::NSAP(3)					User Contributed Perl Documentation				     Net::DNS::RR::NSAP(3)

NAME
Net::DNS::RR::NSAP - DNS NSAP resource record SYNOPSIS
"use Net::DNS::RR"; DESCRIPTION
Class for DNS Network Service Access Point (NSAP) resource records. METHODS
idp print "idp = ", $rr->idp, " "; Returns the RR's initial domain part (the AFI and IDI fields). dsp print "dsp = ", $rr->dsp, " "; Returns the RR's domain specific part (the DFI, AA, Rsvd, RD, Area, ID, and SEL fields). afi print "afi = ", $rr->afi, " "; Returns the RR's authority and format identifier. "Net::DNS" currently supports only AFI 47 (GOSIP Version 2). idi print "idi = ", $rr->idi, " "; Returns the RR's initial domain identifier. dfi print "dfi = ", $rr->dfi, " "; Returns the RR's DSP format identifier. aa print "aa = ", $rr->aa, " "; Returns the RR's administrative authority. rsvd print "rsvd = ", $rr->rsvd, " "; Returns the RR's reserved field. rd print "rd = ", $rr->rd, " "; Returns the RR's routing domain identifier. area print "area = ", $rr->area, " "; Returns the RR's area identifier. id print "id = ", $rr->id, " "; Returns the RR's system identifier. sel print "sel = ", $rr->sel, " "; Returns the RR's NSAP selector. NOTE
COPYRIGHT
Copyright (c) 1997-2002 Michael Fuhr. Portions Copyright (c) 2002-2004 Chris Reinhardt. All rights reserved. This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.. SEE ALSO
perl(1), Net::DNS, Net::DNS::Resolver, Net::DNS::Packet, Net::DNS::Header, Net::DNS::Question, Net::DNS::RR, RFC 1706. perl v5.18.2 2014-01-16 Net::DNS::RR::NSAP(3)

Check Out this Related Man Page

Net::DNS::Question(3)					User Contributed Perl Documentation				     Net::DNS::Question(3)

NAME
Net::DNS::Question - DNS question class SYNOPSIS
"use Net::DNS::Question" DESCRIPTION
A "Net::DNS::Question" object represents a record in the question section of a DNS packet. METHODS
new $question = Net::DNS::Question->new("example.com", "MX", "IN"); Creates a question object from the domain, type, and class passed as arguments. qname, zname print "qname = ", $question->qname, " "; print "zname = ", $question->zname, " "; Returns the domain name. In dynamic update packets, this field is known as "zname" and refers to the zone name. qtype, ztype print "qtype = ", $question->qtype, " "; print "ztype = ", $question->ztype, " "; Returns the record type. In dymamic update packets, this field is known as "ztype" and refers to the zone type (must be SOA). qclass, zclass print "qclass = ", $question->qclass, " "; print "zclass = ", $question->zclass, " "; Returns the record class. In dynamic update packets, this field is known as "zclass" and refers to the zone's class. print $question->print; Prints the question record on the standard output. string print $qr->string, " "; Returns a string representation of the question record. data $qdata = $question->data($packet, $offset); Returns the question record in binary format suitable for inclusion in a DNS packet. Arguments are a "Net::DNS::Packet" object and the offset within that packet's data where the "Net::DNS::Question" record is to be stored. This information is necessary for using compressed domain names. COPYRIGHT
Copyright (c) 1997-2002 Michael Fuhr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
perl(1), Net::DNS, Net::DNS::Resolver, Net::DNS::Packet, Net::DNS::Update, Net::DNS::Header, Net::DNS::RR, RFC 1035 Section 4.1.2 perl v5.8.0 2002-10-12 Net::DNS::Question(3)
Man Page