📄 qdns.3qt
字号:
'\" t.TH QDns 3qt "9 December 2002" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS. All rights reserved. See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQDns \- Asynchronous DNS lookups.SH SYNOPSIS\fC#include <qdns.h>\fR.PPInherits QObject..PP.SS "Public Members".in +1c.ti -1c.BI "enum \fBRecordType\fR { None, A, Aaaa, Mx, Srv, Cname, Ptr, Txt }".br.ti -1c.BI "\fBQDns\fR ()".br.ti -1c.BI "\fBQDns\fR ( const QString & label, RecordType rr = A )".br.ti -1c.BI "\fBQDns\fR ( const QHostAddress & address, RecordType rr = Ptr )".br.ti -1c.BI "virtual \fB~QDns\fR ()".br.ti -1c.BI "virtual void \fBsetLabel\fR ( const QString & label )".br.ti -1c.BI "virtual void \fBsetLabel\fR ( const QHostAddress & address )".br.ti -1c.BI "QString \fBlabel\fR () const".br.ti -1c.BI "virtual void \fBsetRecordType\fR ( RecordType rr = A )".br.ti -1c.BI "RecordType \fBrecordType\fR () const".br.ti -1c.BI "bool \fBisWorking\fR () const".br.ti -1c.BI "QValueList<QHostAddress> \fBaddresses\fR () const".br.ti -1c.BI "QValueList<MailServer> \fBmailServers\fR () const".br.ti -1c.BI "QValueList<Server> \fBservers\fR () const".br.ti -1c.BI "QStringList \fBhostNames\fR () const".br.ti -1c.BI "QStringList \fBtexts\fR () const".br.ti -1c.BI "QString \fBcanonicalName\fR () const".br.ti -1c.BI "QStringList \fBqualifiedNames\fR () const".br.in -1c.SS "Signals".in +1c.ti -1c.BI "void \fBresultsReady\fR ()".br.in -1c.SH DESCRIPTIONThe QDns class provides asynchronous DNS lookups..PPBoth Windows and Unix provide synchronous DNS lookups; Windows provides some asynchronous support too. At the time of writing neither operating system provides asynchronous support for anything other than hostname-to-address mapping..PPQDns rectifies this shortcoming, by providing asynchronous caching lookups for the record types that we expect modern GUI applications to need in the near future..PPThe class is \fInot\fR straightforward to use (although it is much simpler than the native APIs); QSocket provides much easier to use TCP connection facilities. The aim of QDns is to provide a correct and small API to the DNS and nothing more. (We use "correctness" to mean that the DNS information is correctly cached, and correctly timed out.).PPThe API comprises a constructor, functions to set the DNS node (the domain in DNS terminology) and record type (setLabel() and setRecordType()), the corresponding get functions, an isWorking() function to determine whether QDns is working or reading, a resultsReady() signal and query functions for the result..PPThere is one query function for each RecordType, namely addresses(), mailServers(), servers(), hostNames() and texts(). There are also two generic query functions: canonicalName() returns the name you'll presumably end up using (the exact meaning of this depends on the record type) and qualifiedNames() returns a list of the fully qualified names label() maps to..PPSee also QSocket and Input/Output and Networking..SS "Member Type Documentation".SH "QDns::RecordType"This enum type defines the record types QDns can handle. The DNS provides many more; these are the ones we've judged to be in current use, useful for GUI programs and important enough to support right away:.TP\fCQDns::None\fR - No information. This exists only so that QDns can have a default..TP\fCQDns::A\fR - IPv4 addresses. By far the most common type..TP\fCQDns::Aaaa\fR - IPv6 addresses. So far mostly unused..TP\fCQDns::Mx\fR - Mail eXchanger names. Used for mail delivery..TP\fCQDns::Srv\fR - SeRVer names. Generic record type for finding servers. So far mostly unused..TP\fCQDns::Cname\fR - Canonical names. Maps from nicknames to the true name (the canonical name) for a host..TP\fCQDns::Ptr\fR - name PoinTeRs. Maps from IPv4 or IPv6 addresses to hostnames..TP\fCQDns::Txt\fR - arbitrary TeXT for domains..PPWe expect that some support for the RFC-2535 extensions will be added in future versions..SH MEMBER FUNCTION DOCUMENTATION.SH "QDns::QDns ()"Constructs a DNS query object with invalid settings for both the label and the search type..SH "QDns::QDns ( const QString & label, RecordType rr = A )"Constructs a DNS query object that will return record type \fIrr\fR information about \fIlabel\fR..PPThe DNS lookup is started the next time the application enters the event loop. When the result is found the signal resultsReady() is emitted..PP\fIrr\fR defaults to A, IPv4 addresses..SH "QDns::QDns ( const QHostAddress & address, RecordType rr = Ptr )"Constructs a DNS query object that will return record type \fIrr\fR information about host address \fIaddress\fR. The label is set to the IN-ADDR.ARPA domain name. This is useful in combination with the Ptr record type (e.g. if you want to look up a hostname for a given address)..PPThe DNS lookup is started the next time the application enters the event loop. When the result is found the signal resultsReady() is emitted..PP\fIrr\fR defaults to Ptr, that maps addresses to hostnames..SH "QDns::~QDns ()\fC [virtual]\fR"Destroys the DNS query object and frees its allocated resources..SH "QValueList<QHostAddress> QDns::addresses () const"Returns a list of the addresses for this name if this QDns object has a recordType() of QDns::A or QDns::Aaaa and the answer is available; otherwise returns an empty list..PPAs a special case, if label() is a valid numeric IP address, this function returns that address..PPNote that if you want to iterate over the list, you should iterate over a copy, e.g..PP.nf.br QValueList<QHostAddress> list = myDns.addresses();.br QValueList<QHostAddress>::Iterator it = list.begin();.br while( it != list.end() ) {.br myProcessing( *it );.br ++it;.br }.br.fi.SH "QString QDns::canonicalName () const"Returns the canonical name for this DNS node. (This works regardless of what recordType() is set to.).PPIf the canonical name isn't known, this function returns a null string..PPThe canonical name of a DNS node is its full name, or the full name of the target of its CNAME. For example, if l.trolltech.com is a CNAME to lillian.troll.no, and the search path for QDns is" trolltech.com", then the canonical name for all of "lillian"," l", "lillian.troll.no." and "l.trolltech.com" is" lillian.troll.no."..SH "QStringList QDns::hostNames () const"Returns a list of host names if the record type is Ptr..PPNote that if you want to iterate over the list, you should iterate over a copy, e.g..PP.nf.br QStringList list = myDns.hostNames();.br QStringList::Iterator it = list.begin();.br while( it != list.end() ) {.br myProcessing( *it );.br ++it;.br }.br.fi.SH "bool QDns::isWorking () const"Returns TRUE if QDns is doing a lookup for this object (i.e. if it does not already have the necessary information); otherwise returns FALSE..PPQDns emits the resultsReady() signal when the status changes to FALSE..PPExample: network/mail/smtp.cpp..SH "QString QDns::label () const"Returns the domain name for which this object returns information..PPSee also setLabel()..SH "QValueList<MailServer> QDns::mailServers () const"Returns a list of mail servers if the record type is Mx. The class \fCQDns::MailServer\fR contains the following public variables:.TPQString QDns::MailServer::name.TPQ_UINT16 QDns::MailServer::priority.PPNote that if you want to iterate over the list, you should iterate over a copy, e.g..PP.nf.br QValueList<QDns::MailServer> list = myDns.mailServers();.br QValueList<QDns::MailServer>::Iterator it = list.begin();.br while( it != list.end() ) {.br myProcessing( *it );.br ++it;.br }.br.fi.PPExample: network/mail/smtp.cpp..SH "QStringList QDns::qualifiedNames () const"Returns a list of the fully qualified names label() maps to..PPNote that if you want to iterate over the list, you should iterate over a copy, e.g..PP.nf.br QStringList list = myDns.qualifiedNames();.br QStringList::Iterator it = list.begin();.br while( it != list.end() ) {.br myProcessing( *it );.br ++it;.br }.br.fi.SH "RecordType QDns::recordType () const"Returns the record type of this DNS query object..PPSee also setRecordType() and RecordType..SH "void QDns::resultsReady ()\fC [signal]\fR"This signal is emitted when results are available for one of the qualifiedNames()..PPExample: network/mail/smtp.cpp..SH "QValueList<Server> QDns::servers () const"Returns a list of servers if the record type is Srv. The class \fCQDns::Server\fR contains the following public variables:.TPQString QDns::Server::name.TPQ_UINT16 QDns::Server::priority.TPQ_UINT16 QDns::Server::weight.TPQ_UINT16 QDns::Server::port.PPNote that if you want to iterate over the list, you should iterate over a copy, e.g..PP.nf.br QValueList<QDns::Server> list = myDns.servers();.br QValueList<QDns::Server>::Iterator it = list.begin();.br while( it != list.end() ) {.br myProcessing( *it );.br ++it;.br }.br.fi.SH "void QDns::setLabel ( const QString & label )\fC [virtual]\fR"Sets this DNS query object to query for information about \fIlabel\fR..PPThis does not change the recordType(), but its isWorking() status will probably change as a result..PPThe DNS lookup is started the next time the application enters the event loop. When the result is found the signal resultsReady() is emitted..SH "void QDns::setLabel ( const QHostAddress & address )\fC [virtual]\fR"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPSets this DNS query object to query for information about the host address \fIaddress\fR. The label is set to the IN-ADDR.ARPA domain name. This is useful in combination with the Ptr record type (e.g. if you want to look up a hostname for a given address)..SH "void QDns::setRecordType ( RecordType rr = A )\fC [virtual]\fR"Sets this object to query for record type \fIrr\fR records..PPThe DNS lookup is started the next time the application enters the event loop. When the result is found the signal resultsReady() is emitted..PPSee also RecordType..SH "QStringList QDns::texts () const"Returns a list of texts if the record type is Txt..PPNote that if you want to iterate over the list, you should iterate over a copy, e.g..PP.nf.br QStringList list = myDns.texts();.br QStringList::Iterator it = list.begin();.br while( it != list.end() ) {.br myProcessing( *it );.br ++it;.br }.br.fi.SH "SEE ALSO".BR http://doc.trolltech.com/qdns.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com. See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qdns.3qt) and the Qtversion (3.1.1).
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -