1Net::DNS::RR::NSAP(3) User Contributed Perl DocumentationNet::DNS::RR::NSAP(3)
2
3
4
6 Net::DNS::RR::NSAP - DNS NSAP resource record
7
9 "use Net::DNS::RR";
10
12 Class for DNS Network Service Access Point (NSAP) resource records.
13
15 idp
16 print "idp = ", $rr->idp, "\n";
17
18 Returns the RR's initial domain part (the AFI and IDI fields).
19
20 dsp
21 print "dsp = ", $rr->dsp, "\n";
22
23 Returns the RR's domain specific part (the DFI, AA, Rsvd, RD, Area, ID,
24 and SEL fields).
25
26 afi
27 print "afi = ", $rr->afi, "\n";
28
29 Returns the RR's authority and format identifier. "Net::DNS" currently
30 supports only AFI 47 (GOSIP Version 2).
31
32 idi
33 print "idi = ", $rr->idi, "\n";
34
35 Returns the RR's initial domain identifier.
36
37 dfi
38 print "dfi = ", $rr->dfi, "\n";
39
40 Returns the RR's DSP format identifier.
41
42 aa
43 print "aa = ", $rr->aa, "\n";
44
45 Returns the RR's administrative authority.
46
47 rsvd
48 print "rsvd = ", $rr->rsvd, "\n";
49
50 Returns the RR's reserved field.
51
52 rd
53 print "rd = ", $rr->rd, "\n";
54
55 Returns the RR's routing domain identifier.
56
57 area
58 print "area = ", $rr->area, "\n";
59
60 Returns the RR's area identifier.
61
62 id
63 print "id = ", $rr->id, "\n";
64
65 Returns the RR's system identifier.
66
67 sel
68 print "sel = ", $rr->sel, "\n";
69
70 Returns the RR's NSAP selector.
71
74 Copyright (c) 1997-2002 Michael Fuhr.
75
76 Portions Copyright (c) 2002-2004 Chris Reinhardt.
77
78 All rights reserved. This program is free software; you may
79 redistribute it and/or modify it under the same terms as Perl itself..
80
82 perl(1), Net::DNS, Net::DNS::Resolver, Net::DNS::Packet,
83 Net::DNS::Header, Net::DNS::Question, Net::DNS::RR, RFC 1706.
84
85
86
87perl v5.16.3 2012-12-28 Net::DNS::RR::NSAP(3)