/usr/share/perl5/Net/DNS/RR.pm is in libnet-dns-perl 1.10-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 | package Net::DNS::RR;
#
# $Id: RR.pm 1552 2017-03-13 09:44:07Z willem $
#
our $VERSION = (qw$LastChangedRevision: 1552 $)[1];
=head1 NAME
Net::DNS::RR - DNS resource record base class
=head1 SYNOPSIS
use Net::DNS;
$rr = new Net::DNS::RR('example.com IN A 192.0.2.99');
$rr = new Net::DNS::RR(
owner => 'example.com',
type => 'A',
address => '192.0.2.99'
);
=head1 DESCRIPTION
Net::DNS::RR is the base class for DNS Resource Record (RR) objects.
See also the manual pages for each specific RR type.
=cut
use strict;
use warnings;
use integer;
use Carp;
use constant LIB => grep !ref($_), @INC;
use Net::DNS::Parameters;
use Net::DNS::Domain;
use Net::DNS::DomainName;
=head1 METHODS
B<WARNING!!!> Do not assume the RR objects you receive from a query
are of a particular type. You must always check the object type
before calling any of its methods. If you call an unknown method,
you will get an error message and execution will be terminated.
=cut
sub new {
return eval {
local $SIG{__DIE__};
scalar @_ > 2 ? &_new_hash : &_new_string;
} || do {
my $class = shift || __PACKAGE__;
my @param = map defined($_) ? split /\s+/ : 'undef', @_;
my $stmnt = substr "new $class( @param )", 0, 80;
croak "${@}in $stmnt\n";
};
}
=head2 new (from string)
$a = new Net::DNS::RR('host.example.com. 86400 A 192.0.2.1');
$mx = new Net::DNS::RR('example.com. 7200 MX 10 mailhost.example.com.');
$cname = new Net::DNS::RR('www.example.com 300 IN CNAME host.example.com');
$txt = new Net::DNS::RR('txt.example.com 3600 HS TXT "text data"');
Returns an object of the appropriate RR type, or a L<Net::DNS::RR> object
if the type is not implemented. The attribute values are extracted from the
string passed by the user. The syntax of the argument string follows the
RFC1035 specification for zone files, and is compatible with the result
returned by the string method.
The owner and RR type are required; all other information is optional.
Omitting the optional fields is useful for creating the empty RDATA
sections required for certain dynamic update operations.
See the L<Net::DNS::Update> manual page for additional examples.
All names are interpreted as fully qualified domain names.
The trailing dot (.) is optional.
=cut
my $PARSE_REGEX = q/("[^"]*")|;[^\n]*|[ \t\n\r\f()]/;
sub _new_string {
my $base;
local $_;
( $base, $_ ) = @_;
croak 'argument absent or undefined' unless defined $_;
croak 'non-scalar argument' if ref $_;
# parse into quoted strings, contiguous non-whitespace and (discarded) comments
s/\\\\/\\092/g; # disguise escaped escape
s/\\"/\\034/g; # disguise escaped quote
s/\\\(/\\040/g; # disguise escaped bracket
s/\\\)/\\041/g; # disguise escaped bracket
s/\\;/\\059/g; # disguise escaped semicolon
my ( $owner, @token ) = grep defined && length, split /$PARSE_REGEX/o;
croak 'unable to parse RR string' unless scalar @token;
my $t1 = uc $token[0];
my $t2 = uc $token[1] if $#token;
my ( $ttl, $class );
if ( not defined $t2 ) { # <owner> <type>
@token = ('ANY') if $classbyname{$t1}; # <owner> <class>
} elsif ( $classbyname{$t1} || $t1 =~ /^CLASS\d/ ) {
$class = shift @token; # <owner> <class> [<ttl>] <type>
$ttl = shift @token if $t2 =~ /^\d/;
} elsif ( $t1 =~ /^\d/ ) {
$ttl = shift @token; # <owner> <ttl> [<class>] <type>
$class = shift @token if $classbyname{$t2} || $t2 =~ /^CLASS\d/;
}
my $type = shift(@token);
my $populated = scalar @token;
my $self = $base->_subclass( $type, $populated ); # create RR object
$self->owner($owner);
$self->class($class) if defined $class; # specify CLASS
$self->ttl($ttl) if defined $ttl; # specify TTL
return $self unless $populated; # empty RR
if ( $#token && $token[0] =~ /^[\\]?#$/ ) {
shift @token; # RFC3597 hexadecimal format
my $count = shift(@token) || 0;
my $rdata = pack 'H*', join '', @token;
my $rdlen = $self->{rdlength} = length $rdata;
croak 'length and hexadecimal data inconsistent' unless $rdlen == $count;
$self->_decode_rdata( \$rdata, 0 ) if $rdlen; # unpack RDATA
return $self;
}
$self->_parse_rdata(@token); # parse arguments
return $self;
}
=head2 new (from hash)
$rr = new Net::DNS::RR(%hash);
$rr = new Net::DNS::RR(
owner => 'host.example.com',
ttl => 86400,
class => 'IN',
type => 'A',
address => '192.0.2.1'
);
$rr = new Net::DNS::RR(
owner => 'txt.example.com',
type => 'TXT',
txtdata => [ 'one', 'two' ]
);
Returns an object of the appropriate RR type, or a L<Net::DNS::RR> object
if the type is not implemented. Consult the relevant manual pages for the
usage of type specific attributes.
The owner and RR type are required; all other information is optional.
Omitting optional attributes is useful for creating the empty RDATA
sections required for certain dynamic update operations.
=cut
sub _new_hash {
my ( $base, %argument ) = @_;
my %attribute = ( owner => '.', type => 'ANY' );
while ( my ( $key, $value ) = each %argument ) {
$attribute{lc $key} = $value;
}
my ( $owner, $type, $class, $ttl ) = @attribute{qw(owner type class ttl)};
$owner = $attribute{name} if exists $attribute{name}; # synonym for owner
delete @attribute{qw(owner name class type ttl rdlength)};
my $populated = scalar %attribute; # RDATA specified
my $self = $base->_subclass( $type, $populated ); # RR with defaults (if appropriate)
$self->owner($owner);
$self->class($class) if defined $class; # specify CLASS
$self->ttl($ttl) if defined $ttl; # specify TTL
while ( my ( $attribute, $value ) = each %attribute ) {
$self->$attribute( ref($value) eq 'ARRAY' ? @$value : $value );
}
return $self;
}
=head2 decode
( $rr, $next ) = decode Net::DNS::RR( \$data, $offset, @opaque );
Decodes a DNS resource record at the specified location within a
DNS packet.
The argument list consists of a reference to the buffer containing
the packet data and offset indicating where resource record begins.
Remaining arguments, if any, are passed as opaque data to
subordinate decoders.
Returns a C<Net::DNS::RR> object and the offset of the next record
in the packet.
An exception is raised if the data buffer contains insufficient or
corrupt data.
Any remaining arguments are passed as opaque data to subordinate
decoders and do not form part of the published interface.
=cut
use constant RRFIXEDSZ => length pack 'n2 N n', (0) x 4;
sub decode {
my $base = shift;
my ( $data, $offset, @opaque ) = @_;
my ( $owner, $fixed ) = decode Net::DNS::DomainName1035(@_);
my $index = $fixed + RRFIXEDSZ;
die 'corrupt wire-format data' if length $$data < $index;
my $self = $base->_subclass( unpack "\@$fixed n", $$data );
$self->{owner} = $owner;
@{$self}{qw(class ttl rdlength)} = unpack "\@$fixed x2 n N n", $$data;
my $next = $index + $self->{rdlength};
die 'corrupt wire-format data' if length $$data < $next;
$self->{offset} = $offset || 0;
$self->_decode_rdata( $data, $index, @opaque ) if $next > $index or $self->type eq 'OPT';
delete $self->{offset};
return wantarray ? ( $self, $next ) : $self;
}
=head2 encode
$data = $rr->encode( $offset, @opaque );
Returns the C<Net::DNS::RR> in binary format suitable for inclusion
in a DNS packet buffer.
The offset indicates the intended location within the packet data
where the C<Net::DNS::RR> is to be stored.
Any remaining arguments are opaque data which are passed intact to
subordinate encoders.
=cut
sub encode {
my $self = shift;
my ( $offset, @opaque ) = scalar(@_) ? @_ : ( 0x4000, {} );
my $owner = $self->{owner}->encode( $offset, @opaque );
my $type = $self->{type};
my $class = $self->{class} || 1;
my $index = $offset + length($owner) + RRFIXEDSZ;
my $rdata = eval { $self->_encode_rdata( $index, @opaque ); } || '';
return pack 'a* n2 N n a*', $owner, $type, $class, $self->ttl, length $rdata, $rdata;
}
=head2 canonical
$data = $rr->canonical;
Returns the C<Net::DNS::RR> in canonical binary format suitable for
DNSSEC signature validation.
The absence of the associative array argument signals to subordinate
encoders that the canonical uncompressed lower case form of embedded
domain names is to be used.
=cut
sub canonical {
my $self = shift;
my $owner = $self->{owner}->canonical;
my $type = $self->{type};
my $class = $self->{class} || 1;
my $index = RRFIXEDSZ + length $owner;
my $rdata = eval { $self->_encode_rdata($index); } || '';
pack 'a* n2 N n a*', $owner, $type, $class, $self->ttl, length $rdata, $rdata;
}
=head2 print
$rr->print;
Prints the record to the standard output. Calls the string method
to get the formatted RR representation.
=cut
sub print {
print shift->string, "\n";
}
=head2 string
print $rr->string, "\n";
Returns a string representation of the RR using the zone file format
described in RFC1035. All domain names are fully qualified with
trailing dot. This differs from RR attribute methods, which omit
the trailing dot.
=cut
sub string {
my $self = shift;
my $name = $self->{owner}->string;
my @ttl = grep defined, $self->{ttl};
my @core = ( $name, @ttl, $self->class, $self->type );
my @rdata = eval { $self->_format_rdata; };
carp $@ if $@;
my $tab = length($name) < 72 ? "\t" : ' ';
return join $tab, @core, '; no data' unless scalar @rdata;
my @line = _wrap( join( $tab, @core, '(' ), @rdata, ')' );
my $last = pop(@line); # last or only line
$last = join $tab, @core, "@rdata" unless scalar(@line);
return join "\n\t", @line, _wrap( $last, map "; $_", $self->_annotation );
}
=head2 plain
$plain = $rr->plain;
Returns a simplified single line representation of the RR using the
zone file format defined in RFC1035. This facilitates interaction
with programs like nsupdate which have rudimentary RR parsers.
=cut
sub plain {
join ' ', shift->token;
}
=head2 token
@token = $rr->token;
Returns a token list representation of the RR zone file string.
=cut
sub token {
my $self = shift;
my @ttl = grep defined, $self->{ttl};
my @core = ( $self->{owner}->string, @ttl, $self->class, $self->type );
# parse into quoted strings, contiguous non-whitespace and (discarded) comments
local $_ = join ' ', eval { $self->_format_rdata; };
s/\\\\/\\092/g; # disguise escaped escape
s/\\"/\\034/g; # disguise escaped quote
s/\\\(/\\040/g; # disguise escaped bracket
s/\\\)/\\041/g; # disguise escaped bracket
s/\\;/\\059/g; # disguise escaped semicolon
my @token = @core, grep defined && length, split /$PARSE_REGEX/o;
}
=head2 generic
$generic = $rr->generic;
Returns the generic RR representation defined in RFC3597. This facilitates
creation of zone files containing RRs unrecognised by outdated nameservers
and provisioning software.
=cut
sub generic {
my $self = shift;
my @ttl = grep defined, $self->{ttl};
my @class = map "CLASS$_", grep defined, $self->{class};
my @core = ( $self->{owner}->string, @ttl, @class, "TYPE$self->{type}" );
my $data = $self->rdata;
my @data = ( '\\#', length($data), split /(\S{32})/, unpack 'H*', $data );
my @line = _wrap( "@core (", @data, ')' );
return join "\n\t", @line if scalar(@line) > 1;
join ' ', @core, @data;
}
=head2 owner name
$name = $rr->owner;
Returns the owner name of the record.
=cut
sub owner {
my $self = shift;
$self->{owner} = new Net::DNS::DomainName1035(shift) if scalar @_;
$self->{owner}->name if defined wantarray;
}
sub name { &owner; } ## historical
=head2 type
$type = $rr->type;
Returns the record type.
=cut
sub type {
my $self = shift;
croak 'not possible to change RR->type' if scalar @_;
typebyval( $self->{type} );
}
=head2 class
$class = $rr->class;
Resource record class.
=cut
sub class {
my $self = shift;
$self->{class} = classbyname(shift) if scalar @_;
classbyval( $self->{class} || 1 ) if defined wantarray;
}
=head2 ttl
$ttl = $rr->ttl;
$ttl = $rr->ttl(3600);
Resource record time to live in seconds.
=cut
# The following time units are recognised, but are not part of the
# published API. These are required for parsing BIND zone files but
# should not be used in other contexts.
my %unit = ( W => 604800, D => 86400, H => 3600, M => 60, S => 1 );
%unit = ( %unit, map /\D/ ? lc($_) : $_, %unit );
sub ttl {
my ( $self, $time ) = @_;
return $self->{ttl} || 0 unless defined $time; # avoid defining rr->{ttl}
my $ttl = 0;
my %time = reverse split /(\D)\D*/, $time . 'S';
while ( my ( $u, $t ) = each %time ) {
my $scale = $unit{$u} || die qq(bad time: $t$u);
$ttl += $t * $scale;
}
$self->{ttl} = $ttl;
}
################################################################################
##
## Default implementation for unknown RR type
##
################################################################################
sub _decode_rdata { ## decode rdata from wire-format octet string
my ( $self, $data, $offset ) = @_;
$self->{rdata} = substr $$data, $offset, $self->{rdlength};
}
sub _encode_rdata { ## encode rdata as wire-format octet string
my $rdata = shift->{rdata};
return defined $rdata ? $rdata : '';
}
sub _format_rdata { ## format rdata portion of RR string
my $self = shift;
my $data = $self->rdata;
my $size = length($data) || return ''; # RFC3597 unknown RR format
my @data = ( '\\#', $size, split /(\S{32})/, unpack 'H*', $data );
}
sub _parse_rdata { ## parse RR attributes in argument list
my $self = shift;
die join ' ', $self->type, 'not implemented' if ref($self) eq __PACKAGE__;
die join ' ', 'no zone file representation defined for', $self->type;
}
sub _defaults { } ## set attribute default values
sub dump { ## print internal data structure
require Data::Dumper; # uncoverable pod
local $Data::Dumper::Maxdepth = $Data::Dumper::Maxdepth || 6;
local $Data::Dumper::Sortkeys = $Data::Dumper::Sortkeys || 1;
print Data::Dumper::Dumper(@_);
}
sub rdatastr { ## historical RR subtype method
&rdstring; # uncoverable pod
}
=head2 rdata
$rr = new Net::DNS::RR( type => NULL, rdata => 'arbitrary' );
Resource record data section when viewed as opaque octets.
=cut
sub rdata {
my $self = shift;
return eval { $self->_encode_rdata( 0x4000, {} ); } unless scalar @_;
my $rdata = shift;
my $rdlen = $self->{rdlength} = length $rdata;
my $hash = {};
$self->_decode_rdata( \$rdata, 0, $hash ) if $rdlen;
croak 'found compression pointer in rdata' if keys %$hash;
}
=head2 rdstring
$rdstring = $rr->rdstring;
Returns a string representation of the RR-specific data.
=cut
sub rdstring {
my $self = shift;
my @rdata = eval { $self->_format_rdata; };
carp $@ if $@;
join "\n\t", _wrap(@rdata);
}
=head2 rdlength
$rdlength = $rr->rdlength;
Returns the length of the encoded RR-specific data.
=cut
sub rdlength {
length shift->_encode_rdata;
}
###################################################################################
=head1 Sorting of RR arrays
Sorting of RR arrays is done by Net::DNS::rrsort(), see documentation
for L<Net::DNS>. This package provides class methods to set the
comparator function used for a particular RR based on its attributes.
=head2 set_rrsort_func
my $function = sub { ## numerically ascending order
$Net::DNS::a->{'preference'} <=> $Net::DNS::b->{'preference'};
};
Net::DNS::RR::MX->set_rrsort_func( 'preference', $function );
Net::DNS::RR::MX->set_rrsort_func( 'default_sort', $function );
set_rrsort_func() must be called as a class method. The first argument is
the attribute name on which the sorting is to take place. If you specify
"default_sort" then that is the sort algorithm that will be used when
get_rrsort_func() is called without an RR attribute as argument.
The second argument is a reference to a comparator function that uses the
global variables $a and $b in the Net::DNS package. During sorting, the
variables $a and $b will contain references to objects of the class whose
set_rrsort_func() was called. The above sorting function will only be
applied to Net::DNS::RR::MX objects.
The above example is the sorting function implemented in MX.
=cut
our %rrsortfunct;
sub set_rrsort_func {
my $class = shift;
my $attribute = shift;
my $function = shift;
my ($type) = $class =~ m/::([^:]+)$/;
$rrsortfunct{$type}{$attribute} = $function;
}
=head2 get_rrsort_func
$function = Net::DNS::RR::MX->get_rrsort_func('preference');
$function = Net::DNS::RR::MX->get_rrsort_func();
get_rrsort_func() returns a reference to the comparator function.
=cut
my $default = sub { $Net::DNS::a->canonical() cmp $Net::DNS::b->canonical(); };
sub get_rrsort_func {
my $class = shift;
my $attribute = shift || 'default_sort';
my ($type) = $class =~ m/::([^:]+)$/;
$rrsortfunct{$type}{$attribute} || $default;
}
################################################################################
#
# Net::DNS::RR->_subclass($rrname)
# Net::DNS::RR->_subclass($rrname, $default)
#
# Create a new object blessed into appropriate RR subclass, after
# loading the subclass module (if necessary). A subclass with no
# corresponding module will be regarded as unknown and blessed
# into the RR base class.
#
# The optional second argument indicates that default values are
# to be copied into the newly created object.
our %_MINIMAL = ( 'ANY' => bless ['type' => 255], __PACKAGE__ );
our %_LOADED = %_MINIMAL;
sub _subclass {
my $class = shift;
my $rrname = shift;
my $default = shift;
unless ( $_LOADED{$rrname} ) {
local @INC = LIB;
my $rrtype = typebyname($rrname);
unless ( $_LOADED{$rrtype} ) { # load once only
my $mnemon = typebyval($rrtype);
$mnemon =~ s/[^A-Za-z0-9]//g; # expect the unexpected
my $subclass = join '::', __PACKAGE__, $mnemon;
unless ( eval "require $subclass" ) {
push @INC, sub {
Net::DNS::Parameters::_typespec("$rrtype.RRTYPE");
};
$subclass = join '::', __PACKAGE__, "TYPE$rrtype";
eval "require $subclass";
}
$subclass = __PACKAGE__ if $@;
# cache pre-built minimal and populated default object images
my @base = ( 'type' => $rrtype );
$_MINIMAL{$rrtype} = bless [@base], $subclass;
my $object = bless {@base}, $subclass;
$object->_defaults;
$_LOADED{$rrtype} = bless [%$object], $subclass;
}
$_MINIMAL{$rrname} = $_MINIMAL{$rrtype};
$_LOADED{$rrname} = $_LOADED{$rrtype};
}
my $prebuilt = $default ? $_LOADED{$rrname} : $_MINIMAL{$rrname};
bless {@$prebuilt}, ref($prebuilt); # create object
}
sub _annotation {
my $self = shift;
$self->{annotation} = ["@_"] if scalar @_;
return @{$self->{annotation} || []} if wantarray;
}
sub _wrap {
my @text = @_;
my $cols = 80;
my $coln = 0;
my ( @line, @fill );
foreach (@text) {
if ( ( $coln += 1 + length ) > $cols ) { # start new line
push @line, join ' ', @fill if scalar @fill;
$coln = length;
@fill = ();
}
$coln = $cols if chomp; # force line break
push( @fill, $_ );
}
push @line, join ' ', @fill;
return @line;
}
################################################################################
our $AUTOLOAD;
sub DESTROY { } ## Avoid tickling AUTOLOAD (in cleanup)
sub AUTOLOAD { ## Default method
my $self = shift;
my $oref = ref($self);
no strict q/refs/;
my ($method) = reverse split /::/, $AUTOLOAD;
*{$AUTOLOAD} = sub {undef}; ## suppress repetition and deep recursion
croak "$self has no class method '$method'" unless $oref;
my $string = $self->string;
my @object = grep defined($_), $oref, $oref->VERSION;
my $module = join '::', __PACKAGE__, typebyval( $self->{type} );
eval("require $module") if $oref eq __PACKAGE__;
@_ = (<<"END");
*** FATAL PROGRAM ERROR!! Unknown method '$method'
*** which the program has attempted to call for the object:
***
$string
***
*** @object has no instance method '$method'
*** $@
*** THIS IS A BUG IN THE CALLING SOFTWARE, which incorrectly assumes
*** that the object would be of a particular type. The type of an
*** object should be checked before calling any of its methods.
END
goto &{'Carp::confess'};
}
1;
__END__
=head1 COPYRIGHT
Copyright (c)1997-2001 Michael Fuhr.
Portions Copyright (c)2002,2003 Chris Reinhardt.
Portions Copyright (c)2005-2007 Olaf Kolkman.
Portions Copyright (c)2007,2012 Dick Franks.
All rights reserved.
=head1 LICENSE
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted, provided
that the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation, and that the name of the author not be used in advertising
or publicity pertaining to distribution of the software without specific
prior written permission.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
=head1 SEE ALSO
L<perl>, L<Net::DNS>, L<Net::DNS::Question>,
L<Net::DNS::Packet>, L<Net::DNS::Update>,
RFC1035 Section 4.1.3, RFC1123, RFC3597
=cut
|