/usr/lib/perl5/Net/DNS/Packet.pm is in libnet-dns-perl 0.66-2ubuntu3.
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 | package Net::DNS::Packet;
#
# $Id: Packet.pm 837 2009-12-30 10:23:25Z olaf $
#
use strict;
BEGIN {
eval { require bytes; }
}
use vars qw(@ISA @EXPORT_OK $VERSION $AUTOLOAD);
use Carp;
use Net::DNS ;
use Net::DNS::Question;
use Net::DNS::RR;
use Data::Dumper;
require Exporter;
@ISA = qw(Exporter);
@EXPORT_OK = qw(dn_expand);
$VERSION = (qw$LastChangedRevision: 837 $)[1];
=head1 NAME
Net::DNS::Packet - DNS packet object class
=head1 SYNOPSIS
C<use Net::DNS::Packet;>
=head1 DESCRIPTION
A C<Net::DNS::Packet> object represents a DNS packet.
=head1 METHODS
=head2 new
$packet = Net::DNS::Packet->new("example.com");
$packet = Net::DNS::Packet->new("example.com", "MX", "IN");
$packet = Net::DNS::Packet->new(\$data);
$packet = Net::DNS::Packet->new(\$data, 1); # set debugging
($packet, $err) = Net::DNS::Packet->new(\$data);
$packet = Net::DNS::Packet->new();
If passed a domain, type, and class, C<new> creates a packet
object appropriate for making a DNS query for the requested
information. The type and class can be omitted; they default
to A and IN.
If passed a reference to a scalar containing DNS packet data,
C<new> creates a packet object from that data. A second argument
can be passed to turn on debugging output for packet parsing.
If called in array context, returns a packet object and an
error string. The error string will only be defined if the
packet object is undefined (i.e., couldn't be created).
Returns B<undef> if unable to create a packet object (e.g., if
the packet data is truncated).
If called with an empty argument list, C<new> creates an empty packet.
=cut
sub new {
my $class = shift;
my ($data) = @_;
return $class->parse(@_) if ref $data;
my %self = ( header => Net::DNS::Header->new,
question => [],
answer => [],
authority => [],
additional => [] );
push @{$self{question}}, Net::DNS::Question->new(@_) if @_;
bless \%self, $class;
}
sub parse {
my $class = shift;
my $data = shift;
my $debug = shift || 0;
my %self = ( question => [],
answer => [],
authority => [],
additional => [],
answersize => length $$data,
buffer => $data );
my $self = eval {
# Parse header section
my ($header, $offset) = Net::DNS::Header->parse($data);
$self{header} = $header;
# Parse question/zone section
for ( 1 .. $header->qdcount ) {
my $qd;
($qd, $offset) = Net::DNS::Question->parse($data, $offset);
push(@{$self{question}}, $qd);
}
# Retain offset for on-demand parse of remaining data
$self{offset} = $offset;
bless \%self, $class;
};
($self || die $@)->print if $debug;
return wantarray ? ($self, $@) : $self;
}
=head2 data
$data = $packet->data;
Returns the packet data in binary format, suitable for sending to
a nameserver.
=cut
sub data {
my $self = shift;
my $data = '';
my $header = $self->{header};
# Default question for empty packet
$self->push('question', Net::DNS::Question->new('','ANY','ANY'))
unless @{$self->{question}};
#----------------------------------------------------------------------
# Set record counts in packet header
#----------------------------------------------------------------------
$header->qdcount( scalar @{$self->{question}} );
$header->ancount( scalar @{$self->{answer}} );
$header->nscount( scalar @{$self->{authority}} );
$header->arcount( scalar @{$self->{additional}} );
#----------------------------------------------------------------------
# Get the data for each section in the packet
#----------------------------------------------------------------------
$self->{compnames} = {};
foreach my $component ( $header,
@{$self->{question}},
@{$self->{answer}},
@{$self->{authority}},
@{$self->{additional}} ) {
$data .= $component->data($self, length $data);
}
return $data;
}
=head2 header
$header = $packet->header;
Returns a C<Net::DNS::Header> object representing the header section
of the packet.
=cut
sub header {
return shift->{header};
}
=head2 question, zone
@question = $packet->question;
Returns a list of C<Net::DNS::Question> objects representing the
question section of the packet.
In dynamic update packets, this section is known as C<zone> and
specifies the zone to be updated.
=cut
sub question {
return @{shift->{question}};
}
sub zone { &question }
=head2 answer, pre, prerequisite
@answer = $packet->answer;
Returns a list of C<Net::DNS::RR> objects representing the answer
section of the packet.
In dynamic update packets, this section is known as C<pre> or
C<prerequisite> and specifies the RRs or RRsets which must or
must not preexist.
=cut
sub answer {
my @rr = eval { &_answer };
carp "$@ caught" if $@;
return @rr;
}
sub _answer {
my ($self) = @_;
my @rr = @{$self->{answer}};
return @rr if @rr; # return if already parsed
my $data = $self->{buffer}; # parse answer data
my $offset = $self->{offset} || return;
undef $self->{offset};
my $ancount = $self->{header}->ancount;
my $rr;
while ( $ancount-- ) {
($rr, $offset) = Net::DNS::RR->parse($data, $offset);
push(@rr, $rr);
}
$self->{offset} = $offset; # index next section
@{$self->{answer}} = @rr;
}
sub pre { &answer }
sub prerequisite { &answer }
=head2 authority, update
@authority = $packet->authority;
Returns a list of C<Net::DNS::RR> objects representing the authority
section of the packet.
In dynamic update packets, this section is known as C<update> and
specifies the RRs or RRsets to be added or deleted.
=cut
sub authority {
my @rr = eval { &_authority };
carp "$@ caught" if $@;
return @rr;
}
sub _authority {
my ($self) = @_;
my @rr = @{$self->{authority}};
return @rr if @rr; # return if already parsed
&_answer unless @{$self->{answer}}; # parse answer data
my $data = $self->{buffer}; # parse authority data
my $offset = $self->{offset} || return;
undef $self->{offset};
my $nscount = $self->{header}->nscount;
my $rr;
while ( $nscount-- ) {
($rr, $offset) = Net::DNS::RR->parse($data, $offset);
push(@rr, $rr);
}
$self->{offset} = $offset; # index next section
@{$self->{authority}} = @rr;
}
sub update { &authority }
=head2 additional
@additional = $packet->additional;
Returns a list of C<Net::DNS::RR> objects representing the additional
section of the packet.
=cut
sub additional {
my @rr = eval { &_additional };
carp "$@ caught" if $@;
return @rr;
}
sub _additional {
my ($self) = @_;
my @rr = @{$self->{additional}};
return @rr if @rr; # return if already parsed
&_authority unless @{$self->{authority}}; # parse authority data
my $data = $self->{buffer}; # parse additional data
undef $self->{buffer}; # discard raw data after use
my $offset = $self->{offset} || return;
undef $self->{offset};
my $arcount = $self->{header}->arcount;
my $rr;
while ( $arcount-- ) {
($rr, $offset) = Net::DNS::RR->parse($data, $offset);
push(@rr, $rr);
}
@{$self->{additional}} = @rr;
}
=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 $string = $server ? ";; Answer received from $server ($self->{answersize} bytes)\n" : "";
$string .= ";; HEADER SECTION\n".$header->string;
my $question = $update ? 'ZONE' : 'QUESTION';
my @question = map{$_->string} $self->question;
my $qdcount = @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 = @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 = @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 = @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 we received this packet. User-created
packets will return undef for this method.
=cut
sub answerfrom {
my $self = shift;
return $self->{answerfrom} = shift if @_;
return $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 C<< length $packet->data >> instead).
=cut
sub answersize {
return shift->{answersize};
}
=head2 push
$ancount = $packet->push(pre => $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.
=cut
sub push {
my $self = shift;
my $section = lc shift || '';
my @rr = map{ref $_ ? $_ : ()} @_;
my $hdr = $self->{header};
for ( $section ) {
return $hdr->qdcount(push(@{$self->{question}}, @rr)) if /^question/;
if ( $hdr->opcode eq 'UPDATE' ) {
my ($zone) = $self->zone;
my $zclass = $zone->zclass;
foreach ( @rr ) {
$_->class($zclass) unless $_->class =~ /ANY|NONE/;
}
}
return $hdr->ancount(push(@{$self->{answer}}, @rr)) if /^ans|^pre/;
return $hdr->nscount(push(@{$self->{authority}}, @rr)) if /^auth|^upd/;
return $hdr->adcount(push(@{$self->{additional}}, @rr)) if /^add/;
}
carp qq(invalid section "$section");
return undef; # undefined record count
}
=head2 unique_push
$ancount = $packet->unique_push(pre => $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 do not already exist in the packet.
Returns the number of resource records in the specified section.
=cut
sub unique_push {
my $self = shift;
my $section = shift;
my @rr = map{ref $_ ? $_ : ()} @_;
my @unique = map{$self->{seen}->{ (lc $_->name) . $_->class . $_->type . $_->rdatastr }++ ? () : $_} @rr;
return $self->push($section, @unique);
}
=head2 safe_push
A deprecated name for C<unique_push()>.
=cut
sub safe_push {
carp('safe_push() is deprecated, use unique_push() instead,');
&unique_push;
}
=head2 pop
my $rr = $packet->pop("pre");
my $rr = $packet->pop("update");
my $rr = $packet->pop("additional");
my $rr = $packet->pop("question");
Removes RRs from the specified section of the packet.
=cut
sub pop {
my $self = shift;
my $section = lc shift || '';
for ( $section ) {
return pop(@{$self->{answer}}) if /^ans|^pre/;
return pop(@{$self->{question}}) if /^question/;
$self->additional if $self->{buffer}; # parse remaining data
return pop(@{$self->{authority}}) if /^auth|^upd/;
return pop(@{$self->{additional}}) if /^add/;
}
carp qq(invalid section "$section");
return undef;
}
=head2 dn_comp
$compname = $packet->dn_comp("foo.example.com", $offset);
Returns a domain name compressed for a particular packet object, to
be stored beginning at the given offset within the packet data. The
name will be added to a running list of compressed domain names for
future use.
=cut
sub dn_comp {
my ($self, $name, $offset) = @_;
# The Exporter module does not seem to catch this baby...
my @names=Net::DNS::name2labels($name);
my $namehash = $self->{compnames};
my $compname='';
while (@names) {
my $dname = join('.', @names);
if ( my $pointer = $namehash->{$dname} ) {
$compname .= pack('n', 0xc000 | $pointer);
last;
}
$namehash->{$dname} = $offset if ($offset < 0x4000);
my $label = shift @names;
my $length = length $label || next; # skip if null
if ( $length > 63 ) {
$length = 63;
$label = substr($label, 0, $length);
carp "\n$label...\ntruncated to $length octets (RFC1035 2.3.1)";
}
$compname .= pack('C a*', $length, $label);
$offset += $length + 1;
}
$compname .= pack('C', 0) unless @names;
return $compname;
}
=head2 dn_expand
use Net::DNS::Packet qw(dn_expand);
($name, $nextoffset) = dn_expand(\$data, $offset);
($name, $nextoffset) = Net::DNS::Packet::dn_expand(\$data, $offset);
Expands the domain name stored at a particular location in a DNS
packet. The first argument is a reference to a scalar containing
the packet data. The second argument is the offset within the
packet where the (possibly compressed) domain name is stored.
Returns the domain name and the offset of the next location in the
packet.
Returns B<(undef)> if the domain name couldn't be expanded.
=cut
# '
# This is very hot code, so we try to keep things fast. This makes for
# odd style sometimes.
sub dn_expand {
#FYI my ($packet, $offset) = @_;
return dn_expand_XS(@_) if $Net::DNS::HAVE_XS;
# warn "USING PURE PERL dn_expand()\n";
return dn_expand_PP(@_, {} ); # $packet, $offset, anonymous hash
}
sub dn_expand_PP {
my ($packet, $offset, $visited) = @_;
my $packetlen = length $$packet;
my $name = '';
while ( $offset < $packetlen ) {
unless ( my $length = unpack("\@$offset C", $$packet) ) {
$name =~ s/\.$//o;
return ($name, ++$offset);
} elsif ( ($length & 0xc0) == 0xc0 ) { # pointer
my $point = 0x3fff & unpack("\@$offset n", $$packet);
die 'Exception: unbounded name expansion' if $visited->{$point}++;
my ($suffix) = dn_expand_PP($packet, $point, $visited);
return ($name.$suffix, $offset+2) if defined $suffix;
} else {
my $element = substr($$packet, ++$offset, $length);
$name .= Net::DNS::wire2presentation($element).'.';
$offset += $length;
}
}
return undef;
}
=head2 sign_tsig
$key_name = "tsig-key";
$key = "awwLOtRfpGE+rRKF2+DEiw==";
$update = Net::DNS::Update->new("example.com");
$update->push("update", rr_add("foo.example.com A 10.1.2.3"));
$update->sign_tsig($key_name, $key);
$response = $res->send($update);
Signs a packet with a TSIG resource record (see RFC 2845). Uses the
following defaults:
algorithm = HMAC-MD5.SIG-ALG.REG.INT
time_signed = current time
fudge = 300 seconds
If you wish to customize the TSIG record, you'll have to create it
yourself and call the appropriate Net::DNS::RR::TSIG methods. The
following example creates a TSIG record and sets the fudge to 60
seconds:
$key_name = "tsig-key";
$key = "awwLOtRfpGE+rRKF2+DEiw==";
$tsig = Net::DNS::RR->new("$key_name TSIG $key");
$tsig->fudge(60);
$query = Net::DNS::Packet->new("www.example.com");
$query->sign_tsig($tsig);
$response = $res->send($query);
You shouldn't modify a packet after signing it; otherwise authentication
will probably fail.
=cut
sub sign_tsig {
my $self = shift;
my $tsig = shift || return undef;
unless ( ref $tsig && ($tsig->type eq "TSIG") ) {
my $key = shift || return undef;
$tsig = Net::DNS::RR->new("$tsig TSIG $key");
}
$self->push('additional', $tsig) if $tsig;
return $tsig;
}
=head2 sign_sig0
SIG0 support is provided through the Net::DNS::RR::SIG class. This class is not part
of the default Net::DNS distribution but resides in the Net::DNS::SEC distribution.
$update = Net::DNS::Update->new("example.com");
$update->push("update", rr_add("foo.example.com A 10.1.2.3"));
$update->sign_sig0("Kexample.com+003+25317.private");
SIG0 support is experimental see Net::DNS::RR::SIG for details.
The method will call C<Carp::croak()> if Net::DNS::RR::SIG cannot be found.
=cut
sub sign_sig0 {
my $self = shift;
my $arg = shift || return undef;
my $sig0;
croak('sign_sig0() is only available when Net::DNS::SEC is installed')
unless $Net::DNS::DNSSEC;
if ( ref $arg ) {
if ( UNIVERSAL::isa($arg,'Net::DNS::RR::SIG') ) {
$sig0 = $arg;
} elsif ( UNIVERSAL::isa($arg,'Net::DNS::SEC::Private') ) {
$sig0 = Net::DNS::RR::SIG->create('', $arg);
} elsif ( UNIVERSAL::isa($arg,'Net::DNS::RR::SIG::Private') ) {
carp ref($arg).' is deprecated - use Net::DNS::SEC::Private instead';
$sig0 = Net::DNS::RR::SIG->create('', $arg);
} else {
croak 'Incompatible class as argument to sign_sig0: '.ref($arg);
}
} else {
$sig0 = Net::DNS::RR::SIG->create('', $arg);
}
$self->push('additional', $sig0) if $sig0;
return $sig0;
}
=head2 truncate
The truncate method takes a maximum length as argument and then tries
to truncate the packet an set the TC bit according to the rules of
RFC2181 Section 9.
The minimum maximum length that is honored 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, but 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 inspired on a contribution from Aaron Crane via rt.cpan.org 33547
sub truncate {
my $self=shift;
my $max_len=shift;
my $debug=0;
$max_len=$max_len>512?$max_len:512;
print "Truncating to $max_len\n" if $debug;
if (length $self->data() > $max_len) {
# first remove data from the additional section
while (length $self->data() > $max_len){
# first remove _complete_ RRstes from the additonal section.
my $popped= CORE::pop(@{$self->{'additional'}});
last unless defined($popped);
print "Removed ".$popped->string." from additional \n" if $debug;
my $i=0;
my @stripped_additonal;
while ($i< @{$self->{'additional'}}){
#remove all of these same RRtypes
if (
${$self->{'additional'}}[$i]->type eq $popped->type &&
${$self->{'additional'}}[$i]->name eq $popped->name &&
${$self->{'additional'}}[$i]->class eq $popped->class ){
print " Also removed ". ${$self->{'additional'}}[$i]->string." from additonal \n" if $debug; }else{
CORE::push @stripped_additonal, ${$self->{'additional'}}[$i];
}
$i++;
}
$self->{'additional'}=\@stripped_additonal;
}
return $self if length $self->data <= $max_len;
my @sections = qw<authority answer question>;
while (@sections) {
while (my $popped=$self->pop($sections[0])) {
last unless defined($popped);
print "Popped ".$popped->string." from the $sections[0] section\n" if $debug;
$self->header->tc(1);
return $self if length $self->data <= $max_len;
next;
}
shift @sections;
}
}
return $self;
}
=head1 COPYRIGHT
Copyright (c) 1997-2002 Michael Fuhr.
Portions Copyright (c) 2002-2004 Chris Reinhardt.
Portions Copyright (c) 2002-2009 Olaf Kolkman
Portions Copyright (c) 2007-2008 Dick Franks
All rights reserved. This program is free software; you may redistribute
it and/or modify it under the same terms as Perl itself.
=head1 SEE ALSO
L<perl(1)>, L<Net::DNS>, L<Net::DNS::Resolver>, L<Net::DNS::Update>,
L<Net::DNS::Header>, L<Net::DNS::Question>, L<Net::DNS::RR>,
RFC 1035 Section 4.1, RFC 2136 Section 2, RFC 2845
=cut
1;
|