Unix and Linux Discussions Tagged with question |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
3 |
8,753 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
1 |
7,173 |
SCO |
|
|
|
7 |
3,439 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
1,238 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
7,772 |
What is on Your Mind? |
|
|
|
1 |
802 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
434 |
UNIX for Beginners Questions & Answers |
|
|
|
14 |
12,920 |
Programming |
|
|
|
4 |
432 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
576 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,920 |
Shell Programming and Scripting |
|
|
|
4 |
9,852 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
914 |
Shell Programming and Scripting |
|
|
|
6 |
693 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,016 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,156 |
Shell Programming and Scripting |
|
|
|
6 |
628 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
575 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
648 |
UNIX for Beginners Questions & Answers |
|
|
|
33 |
6,773 |
Solaris |
|
|
|
17 |
4,451 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
563 |
Shell Programming and Scripting |
|
|
|
1 |
2,864 |
Linux |
|
|
|
4 |
1,566 |
UNIX for Advanced & Expert Users |
|
|
|
10 |
1,047 |
Shell Programming and Scripting |
|
|
|
1 |
1,093 |
Shell Programming and Scripting |
|
|
|
3 |
2,554 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,056 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
3,187 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
1,670 |
Post Here to Contact Site Administrators and Moderators |
|
|
|
2 |
1,832 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,775 |
SuSE |
|
|
|
5 |
2,646 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
1,695 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
7,725 |
Programming |
|
|
|
2 |
3,175 |
OS X (Apple) |
|
|
|
7 |
2,573 |
Shell Programming and Scripting |
|
|
|
1 |
1,792 |
UNIX for Dummies Questions & Answers |
|
|
|
9 |
3,810 |
Programming |
|
|
|
3 |
2,250 |
Windows & DOS: Issues & Discussions |
Net::DNS::Question(3) User Contributed Perl Documentation Net::DNS::Question(3)
NAME
Net::DNS::Question - DNS question class
SYNOPSIS
"use Net::DNS::Question"
DESCRIPTION
A "Net::DNS::Question" object represents a record in the question section of a DNS packet.
METHODS
new
$question = Net::DNS::Question->new("example.com", "MX", "IN");
Creates a question object from the domain, type, and class passed as arguments.
qname, zname
print "qname = ", $question->qname, "
";
print "zname = ", $question->zname, "
";
Returns the domain name. In dynamic update packets, this field is known as "zname" and refers to the zone name.
qtype, ztype
print "qtype = ", $question->qtype, "
";
print "ztype = ", $question->ztype, "
";
Returns the record type. In dymamic update packets, this field is known as "ztype" and refers to the zone type (must be SOA).
qclass, zclass
print "qclass = ", $question->qclass, "
";
print "zclass = ", $question->zclass, "
";
Returns the record class. In dynamic update packets, this field is known as "zclass" and refers to the zone's class.
print
$question->print;
Prints the question record on the standard output.
string
print $qr->string, "
";
Returns a string representation of the question record.
data
$qdata = $question->data($packet, $offset);
Returns the question record in binary format suitable for inclusion in a DNS packet.
Arguments are a "Net::DNS::Packet" object and the offset within that packet's data where the "Net::DNS::Question" record is to be stored.
This information is necessary for using compressed domain names.
COPYRIGHT
Copyright (c) 1997-2002 Michael Fuhr. All rights reserved. This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
SEE ALSO
perl(1), Net::DNS, Net::DNS::Resolver, Net::DNS::Packet, Net::DNS::Update, Net::DNS::Header, Net::DNS::RR, RFC 1035 Section 4.1.2
perl v5.8.0 2002-10-12 Net::DNS::Question(3)