/usr/share/perl5/Net/DNS/Packet.pm is in libnet-dns-perl 1.07-1.
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 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 | package Net::DNS::Packet;
#
# $Id: Packet.pm 1523 2016-12-29 16:53:52Z willem $
#
use vars qw($VERSION);
$VERSION = (qw$LastChangedRevision: 1523 $)[1];
=head1 NAME
Net::DNS::Packet - DNS protocol packet
=head1 SYNOPSIS
use Net::DNS::Packet;
$query = new Net::DNS::Packet( 'example.com', 'MX', 'IN' );
$reply = $resolver->send( $query );
=head1 DESCRIPTION
A Net::DNS::Packet object represents a DNS protocol packet.
=cut
use strict;
use integer;
use Carp;
use constant UDPSZ => 512;
BEGIN {
require Net::DNS::Header;
require Net::DNS::Question;
require Net::DNS::RR;
}
=head1 METHODS
=head2 new
$packet = new Net::DNS::Packet( 'example.com' );
$packet = new Net::DNS::Packet( 'example.com', 'MX', 'IN' );
$packet = new Net::DNS::Packet();
If passed a domain, type, and class, new() creates a Net::DNS::Packet
object which is suitable for making a DNS query for the specified
information. The type and class may be omitted; they default to A
and IN.
If called with an empty argument list, new() creates an empty packet.
=cut
sub new {
return &decode if ref $_[1];
my $class = shift;
my $self = bless {
status => 0,
question => [],
answer => [],
authority => [],
additional => [],
}, $class;
$self->{question} = [Net::DNS::Question->new(@_)] if scalar @_;
return $self;
}
#=head2 decode
=pod
$packet = new Net::DNS::Packet( \$data );
$packet = new Net::DNS::Packet( \$data, 1 ); # debug
If passed a reference to a scalar containing DNS packet data, a new
packet object is created by decoding the data.
The optional second boolean argument enables debugging output.
Returns undef if unable to create a packet object.
Decoding errors, including data corruption and truncation, are
collected in the $@ ($EVAL_ERROR) variable.
( $packet, $length ) = new Net::DNS::Packet( \$data );
If called in array context, returns a packet object and the number
of octets successfully decoded.
Note that the number of RRs in each section of the packet may differ
from the corresponding header value if the data has been truncated
or corrupted during transmission.
=cut
use constant HEADER_LENGTH => length pack 'n6', (0) x 6;
sub decode {
my $class = shift; # uncoverable pod
my $data = shift;
my $debug = shift || 0;
my $offset = 0;
my $self;
eval {
local $SIG{__DIE__};
die 'corrupt wire-format data' if length($$data) < HEADER_LENGTH;
# header section
my ( $id, $status, @count ) = unpack 'n6', $$data;
my ( $qd, $an, $ns, $ar ) = @count;
$offset = HEADER_LENGTH;
$self = bless {
id => $id,
status => $status,
count => [@count],
question => [],
answer => [],
authority => [],
additional => [],
answersize => length $$data
}, $class;
# question/zone section
my $hash = {};
my $record;
while ( $qd-- ) {
( $record, $offset ) = decode Net::DNS::Question( $data, $offset, $hash );
CORE::push( @{$self->{question}}, $record );
}
# RR sections
while ( $an-- ) {
( $record, $offset ) = decode Net::DNS::RR( $data, $offset, $hash );
CORE::push( @{$self->{answer}}, $record );
}
while ( $ns-- ) {
( $record, $offset ) = decode Net::DNS::RR( $data, $offset, $hash );
CORE::push( @{$self->{authority}}, $record );
}
while ( $ar-- ) {
( $record, $offset ) = decode Net::DNS::RR( $data, $offset, $hash );
CORE::push( @{$self->{additional}}, $record );
}
return $self;
};
if ($debug) {
local $@ = $@;
print $@ if $@;
$self->print if $self;
}
return wantarray ? ( $self, $offset ) : $self;
}
=head2 data
$data = $packet->data;
$data = $packet->data( $size );
Returns the packet data in binary format, suitable for sending as a
query or update request to a nameserver.
Truncation may be specified using a non-zero optional size argument.
=cut
sub data {
&encode;
}
sub encode {
my ( $self, $size ) = @_; # uncoverable pod
my $edns = $self->edns; # EDNS support
my @addl = grep !$_->isa('Net::DNS::RR::OPT'), @{$self->{additional}};
$self->{additional} = [@addl, $edns] if $edns->_specified;
return $self->truncate($size) if $size;
my @part = qw(question answer authority additional);
my @size = map scalar( @{$self->{$_}} ), @part;
my $data = pack 'n6', $self->header->id, $self->{status}, @size;
$self->{count} = [];
my $hash = {}; # packet body
foreach my $component ( map @{$self->{$_}}, @part ) {
$data .= $component->encode( length $data, $hash, $self );
}
return $data;
}
=head2 header
$header = $packet->header;
Constructor method which returns a Net::DNS::Header object which
represents the header section of the packet.
=cut
sub header {
my $self = shift;
bless \$self, q(Net::DNS::Header);
}
=head2 edns
$edns = $packet->edns;
$version = $edns->version;
$UDPsize = $edns->size;
Auxiliary function which provides access to the EDNS protocol
extension OPT RR.
=cut
sub edns {
my $self = shift;
my $link = \$self->{xedns};
($$link) = grep $_->isa(qw(Net::DNS::RR::OPT)), @{$self->{additional}} unless $$link;
$$link = new Net::DNS::RR( type => 'OPT' ) unless $$link;
return $$link;
}
=head2 reply
$reply = $query->reply( $UDPmax );
Constructor method which returns a new reply packet.
The optional UDPsize argument is the maximum UDP packet size which
can be reassembled by the local network stack, and is advertised in
response to an EDNS query.
=cut
sub reply {
my $query = shift;
my $UDPmax = shift;
my $qheadr = $query->header;
croak 'erroneous qr flag in query packet' if $qheadr->qr;
my $reply = new Net::DNS::Packet();
my $header = $reply->header;
$header->qr(1); # reply with same id, opcode and question
$header->id( $qheadr->id );
$header->opcode( $qheadr->opcode );
my @question = $query->question;
$reply->{question} = [@question];
$header->rcode('FORMERR'); # no RCODE considered sinful!
$header->rd( $qheadr->rd ); # copy these flags into reply
$header->cd( $qheadr->cd );
return $reply unless grep $_->isa('Net::DNS::RR::OPT'), @{$query->{additional}};
my $edns = $reply->edns();
CORE::push( @{$reply->{additional}}, $edns );
$edns->size($UDPmax);
return $reply;
}
=head2 question, zone
@question = $packet->question;
Returns a list of Net::DNS::Question objects representing the
question section of the packet.
In dynamic update packets, this section is known as zone() and
specifies the DNS zone to be updated.
=cut
sub question {
my @qr = @{shift->{question}};
}
sub zone {&question}
=head2 answer, pre, prerequisite
@answer = $packet->answer;
Returns a list of Net::DNS::RR objects representing the answer
section of the packet.
In dynamic update packets, this section is known as pre() or
prerequisite() and specifies the RRs or RRsets which must or must
not preexist.
=cut
sub answer {
my @rr = @{shift->{answer}};
}
sub pre {&answer}
sub prerequisite {&answer}
=head2 authority, update
@authority = $packet->authority;
Returns a list of Net::DNS::RR objects representing the authority
section of the packet.
In dynamic update packets, this section is known as update() and
specifies the RRs or RRsets to be added or deleted.
=cut
sub authority {
my @rr = @{shift->{authority}};
}
sub update {&authority}
=head2 additional
@additional = $packet->additional;
Returns a list of Net::DNS::RR objects representing the additional
section of the packet.
=cut
sub additional {
my @rr = @{shift->{additional}};
}
=head2 print
$packet->print;
Prints the packet data on the standard output in an ASCII format
similar to that used in DNS zone files.
=cut
sub print { print &string; }
=head2 string
print $packet->string;
Returns a string representation of the packet.
=cut
sub string {
my $self = shift;
my $header = $self->header;
my $update = $header->opcode eq 'UPDATE';
my $server = $self->{answerfrom};
my $length = $self->{answersize};
my $string = $server ? ";; Answer received from $server ($length bytes)\n" : "";
$string .= ";; HEADER SECTION\n" . $header->string;
my $question = $update ? 'ZONE' : 'QUESTION';
my @question = map $_->string, $self->question;
my $qdcount = scalar @question;
my $qds = $qdcount != 1 ? 's' : '';
$string .= join "\n;; ", "\n;; $question SECTION ($qdcount record$qds)", @question;
my $answer = $update ? 'PREREQUISITE' : 'ANSWER';
my @answer = map $_->string, $self->answer;
my $ancount = scalar @answer;
my $ans = $ancount != 1 ? 's' : '';
$string .= join "\n", "\n\n;; $answer SECTION ($ancount record$ans)", @answer;
my $authority = $update ? 'UPDATE' : 'AUTHORITY';
my @authority = map $_->string, $self->authority;
my $nscount = scalar @authority;
my $nss = $nscount != 1 ? 's' : '';
$string .= join "\n", "\n\n;; $authority SECTION ($nscount record$nss)", @authority;
my @additional = map $_->string, $self->additional;
my $arcount = scalar @additional;
my $ars = $arcount != 1 ? 's' : '';
$string .= join "\n", "\n\n;; ADDITIONAL SECTION ($arcount record$ars)", @additional;
return "$string\n\n";
}
=head2 answerfrom
print "packet received from ", $packet->answerfrom, "\n";
Returns the IP address from which this packet was received.
User-created packets will return undef for this method.
=cut
sub answerfrom {
my $self = shift;
$self->{answerfrom} = shift if scalar @_;
$self->{answerfrom};
}
=head2 answersize
print "packet size: ", $packet->answersize, " bytes\n";
Returns the size of the packet in bytes as it was received from a
nameserver. User-created packets will return undef for this method
(use length($packet->data) instead).
=cut
sub answersize {
shift->{answersize};
}
=head2 push
$ancount = $packet->push( prereq => $rr );
$nscount = $packet->push( update => $rr );
$arcount = $packet->push( additional => $rr );
$nscount = $packet->push( update => $rr1, $rr2, $rr3 );
$nscount = $packet->push( update => @rr );
Adds RRs to the specified section of the packet.
Returns the number of resource records in the specified section.
Section names may be abbreviated to the first three characters.
=cut
sub push {
my $self = shift;
my $list = $self->_section(shift);
CORE::push( @$list, grep ref($_), @_ );
}
=head2 unique_push
$ancount = $packet->unique_push( prereq => $rr );
$nscount = $packet->unique_push( update => $rr );
$arcount = $packet->unique_push( additional => $rr );
$nscount = $packet->unique_push( update => $rr1, $rr2, $rr3 );
$nscount = $packet->unique_push( update => @rr );
Adds RRs to the specified section of the packet provided that the
RRs are not already present in the same section.
Returns the number of resource records in the specified section.
Section names may be abbreviated to the first three characters.
=cut
sub unique_push {
my $self = shift;
my $list = $self->_section(shift);
my @rr = grep ref($_), @_;
my %unique = map { ( bless( {%$_, ttl => 0}, ref $_ )->canonical => $_ ) } @rr, @$list;
scalar( @$list = values %unique );
}
=head2 pop
my $rr = $packet->pop( 'pre' );
my $rr = $packet->pop( 'update' );
my $rr = $packet->pop( 'additional' );
Removes a single RR from the specified section of the packet.
=cut
sub pop {
my $self = shift;
my $list = $self->_section(shift);
CORE::pop(@$list);
}
my %_section = ( ## section name abbreviation table
'ans' => 'answer',
'pre' => 'answer',
'aut' => 'authority',
'upd' => 'authority',
'add' => 'additional'
);
sub _section { ## returns array reference for section
my $self = shift;
my $name = shift;
my $list = $_section{unpack 'a3', $name} || $name;
$self->{$list} ||= [];
}
=head2 sign_tsig
$query = Net::DNS::Packet->new( 'www.example.com', 'A' );
$query->sign_tsig(
'Khmac-sha512.example.+165+01018.private',
fudge => 60
);
$reply = $res->send( $query );
$reply->verify( $query ) || die $reply->verifyerr;
Attaches a TSIG resource record object, which will be used to sign
the packet (see RFC 2845).
The TSIG record can be customised by optional additional arguments to
sign_tsig() or by calling the appropriate Net::DNS::RR::TSIG methods.
If you wish to create a TSIG record using a non-standard algorithm,
you will have to create it yourself. In all cases, the TSIG name
must uniquely identify the key shared between the parties, and the
algorithm name must identify the signing function to be used with the
specified key.
$tsig = Net::DNS::RR->new(
name => 'tsig.example',
type => 'TSIG',
algorithm => 'custom-algorithm',
key => '<base64 key text>',
sig_function => sub {
my ($key, $data) = @_;
...
}
);
$query->sign_tsig( $tsig );
The historical simplified syntax is still available, but additional
options can not be specified.
$packet->sign_tsig( $key_name, $key );
The response to an inbound request is signed by presenting the request
in place of the key parameter.
$response = $request->reply;
$response->sign_tsig( $request, @options );
Multi-packet transactions are signed by chaining the sign_tsig()
calls together as follows:
$opaque = $packet1->sign_tsig( 'Kexample.+165+13281.private' );
$opaque = $packet2->sign_tsig( $opaque );
$packet3->sign_tsig( $opaque );
The opaque intermediate object references returned during multi-packet
signing are not intended to be accessed by the end-user application.
Any such access is expressly forbidden.
Note that a TSIG record is added to every packet; this implementation
does not support the suppressed signature scheme described in RFC2845.
=cut
sub sign_tsig {
my $self = shift;
eval {
local $SIG{__DIE__};
require Net::DNS::RR::TSIG;
my $tsig = Net::DNS::RR::TSIG->create(@_);
$self->push( 'additional' => $tsig );
return $tsig;
} || do {
croak "$@\nTSIG: unable to sign packet";
};
}
=head2 verify and verifyerr
$packet->verify() || die $packet->verifyerr;
$reply->verify( $query ) || die $reply->verifyerr;
Verify TSIG signature of packet or reply to the corresponding query.
$opaque = $packet1->verify( $query ) || die $packet1->verifyerr;
$opaque = $packet2->verify( $opaque );
$verifed = $packet3->verify( $opaque ) || die $packet3->verifyerr;
The opaque intermediate object references returned during multi-packet
verify() will be undefined (Boolean false) if verification fails.
Access to the object itself, if it exists, is expressly forbidden.
Testing at every stage may be omitted, which results in a BADSIG error
on the final packet in the absence of more specific information.
=cut
sub verify {
my $self = shift;
my $sig = $self->sigrr;
return $sig ? $sig->verify( $self, @_ ) : shift;
}
sub verifyerr {
my $self = shift;
my $sig = $self->sigrr;
return $sig ? $sig->vrfyerrstr : 'not signed';
}
=head2 sign_sig0
SIG0 support is provided through the Net::DNS::RR::SIG class.
The requisite cryptographic components are not integrated into
Net::DNS but reside in the Net::DNS::SEC distribution available
from CPAN.
$update = new Net::DNS::Update('example.com');
$update->push( update => rr_add('foo.example.com A 10.1.2.3'));
$update->sign_sig0('Kexample.com+003+25317.private');
Execution will be terminated if Net::DNS::SEC is not available.
=head2 verify SIG0
$packet->verify( $keyrr ) || die $packet->verifyerr;
$packet->verify( [$keyrr, ...] ) || die $packet->verifyerr;
Verify SIG0 packet signature against one or more specified KEY RRs.
=cut
sub sign_sig0 {
my $self = shift;
my $karg = shift;
eval {
local $SIG{__DIE__};
require Net::DNS::RR::SIG;
my $sig0;
if ( ref($karg) eq 'Net::DNS::RR::SIG' ) {
$sig0 = $karg;
} else {
$sig0 = Net::DNS::RR::SIG->create( '', $karg );
}
$self->push( 'additional' => $sig0 );
return $sig0;
} || do {
croak "$@\nSIG0: unable to sign packet";
};
}
=head2 sigrr
$sigrr = $packet->sigrr() || die 'unsigned packet';
The sigrr method returns the signature RR from a signed packet
or undefined if the signature is absent.
=cut
sub sigrr {
my $self = shift;
my ($sig) = reverse $self->additional;
return undef unless $sig;
return $sig if $sig->type eq 'TSIG';
return $sig if $sig->type eq 'SIG';
return undef;
}
########################################
=head2 truncate
The truncate method takes a maximum length as argument and then tries
to truncate the packet and set the TC bit according to the rules of
RFC2181 Section 9.
The minimum maximum length that is honoured is 512 octets.
=cut
# From RFC2181:
#
# 9. The TC (truncated) header bit
#
# The TC bit should be set in responses only when an RRSet is required
# as a part of the response, but could not be included in its entirety.
# The TC bit should not be set merely because some extra information
# could have been included, for which there was insufficient room. This
# includes the results of additional section processing. In such cases
# the entire RRSet that will not fit in the response should be omitted,
# and the reply sent as is, with the TC bit clear. If the recipient of
# the reply needs the omitted data, it can construct a query for that
# data and send that separately.
#
# Where TC is set, the partial RRSet that would not completely fit may
# be left in the response. When a DNS client receives a reply with TC
# set, it should ignore that response, and query again, using a
# mechanism, such as a TCP connection, that will permit larger replies.
# Code developed from a contribution by Aaron Crane via rt.cpan.org 33547
sub truncate {
my $self = shift;
my $size = shift || UDPSZ;
my $sigrr = $self->sigrr;
$size = UDPSZ unless $size > UDPSZ;
$size -= $sigrr->_size if $sigrr;
my $data = pack 'x' x 12; # header placeholder
my $hdsz = length $data;
$self->{count} = [];
my $tc;
my $hash = {};
foreach my $section ( map $self->{$_}, qw(question answer authority) ) {
my @list;
foreach my $item (@$section) {
my $component = $item->encode( length $data, $hash );
last if length($data) + length($component) > $size;
last if $tc;
$data .= $component;
CORE::push @list, $item;
}
$tc++ if scalar(@list) < scalar(@$section);
@$section = @list;
}
$self->header->tc(1) if $tc; # only set if truncated here
my %rrset;
my @order;
foreach my $item ( grep ref($_) ne ref($sigrr), $self->additional ) {
my $name = $item->{owner}->canonical;
my $class = $item->{class} || 0;
my $key = pack 'nna*', $class, $item->{type}, $name;
CORE::push @order, $key unless $rrset{$key};
CORE::push @{$rrset{$key}}, $item;
}
my @list;
foreach my $key (@order) {
my $component = '';
my @item = @{$rrset{$key}};
foreach my $item (@item) {
$component .= $item->encode( length $data, $hash );
}
last if length($data) + length($component) > $size;
$data .= $component;
CORE::push @list, @item;
}
if ($sigrr) {
$data .= $sigrr->encode( length $data, $hash, $self );
CORE::push @list, $sigrr;
}
$self->{'additional'} = \@list;
my @part = qw(question answer authority additional);
my @size = map scalar( @{$self->{$_}} ), @part;
pack 'n6 a*', $self->header->id, $self->{status}, @size, substr( $data, $hdsz );
}
########################################
sub dump { ## print internal data structure
require Data::Dumper; # uncoverable pod
local $Data::Dumper::Maxdepth = $Data::Dumper::Maxdepth || 3;
local $Data::Dumper::Sortkeys = $Data::Dumper::Sortkeys || 1;
print Data::Dumper::Dumper(@_);
}
1;
__END__
=head1 COPYRIGHT
Copyright (c)1997-2000 Michael Fuhr.
Portions Copyright (c)2002-2004 Chris Reinhardt.
Portions Copyright (c)2002-2009 Olaf Kolkman
Portions Copyright (c)2007-2015 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::Update>, L<Net::DNS::Header>,
L<Net::DNS::Question>, L<Net::DNS::RR>, L<Net::DNS::RR::TSIG>,
RFC1035 Section 4.1, RFC2136 Section 2, RFC2845
=cut
|