The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Net::Frame::Layer::DNS::RR::TXT - DNS Resource Record TXT rdata type

SYNOPSIS

   use Net::Frame::Layer::DNS::RR::TXT;

   my $rdata = Net::Frame::Layer::DNS::RR::TXT->new(
      txtdata => 'textdata',
   );
   $rdata->pack;

   print 'RAW: '.$rdata->dump."\n";

   # Create RR with rdata
   use Net::Frame::Layer::DNS::RR qw(:consts);
   
   my $layer = Net::Frame::Layer::DNS::RR->new(
      type  => NF_DNS_TYPE_TXT
      rdata => $rdata->pack
   );
   $layer->pack;

DESCRIPTION

This modules implements the encoding and decoding of the DNS Resource Record TXT rdata type object. Users need only use this for encoding. Net::Frame::Layer::DNS::RR calls this as needed to assist in rdata decoding.

See also Net::Frame::Layer for other attributes and methods.

ATTRIBUTES

txtdata

Text data - character string.

The following are inherited attributes. See Net::Frame::Layer for more information.

raw
payload
nextLayer

METHODS

new
new (hash)

Object constructor. You can pass attributes that will overwrite default ones. See SYNOPSIS for default values.

The following are inherited methods. Some of them may be overriden in this layer, and some others may not be meaningful in this layer. See Net::Frame::Layer for more information.

layer
computeLengths
computeChecksums
pack
unpack
encapsulate
getLength
getPayloadLength
print
dump

CONSTANTS

No constants here.

SEE ALSO

Net::Frame::Layer::DNS, Net::Frame::Layer::DNS::RR, Net::Frame::Layer

AUTHOR

Michael Vincent

COPYRIGHT AND LICENSE

Copyright (c) 2012, Michael Vincent

You may distribute this module under the terms of the Artistic license. See LICENSE.Artistic file in the source distribution archive.