Net::DNS::ToolKit::Question - Resource Handler
DO NOT use Net::DNS::ToolKit::Question DO NOT require Net::DNS::ToolKit::Question
Net::DNS::ToolKit::Question is autoloaded by class Net::DNS::ToolKit::RR and its methods are instantiated in a 'special' manner.
input: pointer to buffer,
offset into buffer
returns: new offset,
expanded name,
type,
class
NOTE: it is up to the user to update the question count. See: put_qdcount
Since the question usually is the first record to be appended to the buffer, @dnptrs may be ommitted. See the details at dn_comp.
| Usage: ($newoff,@dnptrs)=$put->Question(\$buffer,$offset, | |
| $name,$type,$class); |
input: pointer to buffer,
offset into buffer,
domain name,
question type,
question class,
pointer to array of
previously compressed names,
returns: offset to next record,
updated array of offsets to
previous compressed names
=cut
sub put {
my($self,$bp,$off,$name,$type,$class,$dp) = @_;
($off, my @dnptrs)=dn_comp($bp,$off,\$name,$dp);
$off = put16($bp,$off,$type);
if (! $class && exists $self->{class}) {
$class = $self->{class};
}
$off = put16($bp,$off,$class);
return $off unless wantarray;
return($off,@dnptrs);
}
input: domain name,
question type (numeric)
question class (numeric)
returns: domain name,
type TEXT,
class TEXT
Net::DNS::ToolKit
none
Michael Robinton <michael@bizsystems.com>
Copyright 2003, Michael Robinton <michael@bizsystems.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Net::DNS::ToolKit(3)