diff options
Diffstat (limited to 'doc/html/ntqdns.html')
-rw-r--r-- | doc/html/ntqdns.html | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/doc/html/ntqdns.html b/doc/html/ntqdns.html index ab4e6d974..d1df6eb48 100644 --- a/doc/html/ntqdns.html +++ b/doc/html/ntqdns.html @@ -148,7 +148,7 @@ emitted. </h3> Destroys the DNS query object and frees its allocated resources. -<h3 class=fn><a href="ntqvaluelist.html">TQValueList</a><TQHostAddress> <a name="addresses"></a>TQDns::addresses () const +<h3 class=fn><a href="tqvaluelist.html">TQValueList</a><TQHostAddress> <a name="addresses"></a>TQDns::addresses () const </h3> Returns a list of the addresses for this name if this TQDns object has a <a href="#recordType">recordType</a>() of <a href="#RecordType-enum">TQDns::A</a> or <a href="#RecordType-enum">TQDns::Aaaa</a> and the answer @@ -158,9 +158,9 @@ function returns that address. <p> Note that if you want to iterate over the list, you should iterate over a copy, e.g. <pre> - <a href="ntqvaluelist.html">TQValueList</a><TQHostAddress> list = myDns.addresses(); - TQValueList<TQHostAddress>::Iterator it = list.<a href="ntqvaluelist.html#begin">begin</a>(); - while( it != list.<a href="ntqvaluelist.html#end">end</a>() ) { + <a href="tqvaluelist.html">TQValueList</a><TQHostAddress> list = myDns.addresses(); + TQValueList<TQHostAddress>::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); + while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); ++it; } @@ -187,8 +187,8 @@ Returns a list of host names if the record type is <a href="#RecordType-enum">Pt over a copy, e.g. <pre> <a href="ntqstringlist.html">TQStringList</a> list = myDns.hostNames(); - TQStringList::Iterator it = list.<a href="ntqvaluelist.html#begin">begin</a>(); - while( it != list.<a href="ntqvaluelist.html#end">end</a>() ) { + TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); + while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); ++it; } @@ -209,7 +209,7 @@ returns FALSE. <p> Returns the domain name for which this object returns information. <p> <p>See also <a href="#setLabel">setLabel</a>(). -<h3 class=fn><a href="ntqvaluelist.html">TQValueList</a><MailServer> <a name="mailServers"></a>TQDns::mailServers () const +<h3 class=fn><a href="tqvaluelist.html">TQValueList</a><MailServer> <a name="mailServers"></a>TQDns::mailServers () const </h3> Returns a list of mail servers if the record type is <a href="#RecordType-enum">Mx</a>. The class <tt>TQDns::MailServer</tt> contains the following public variables: @@ -220,9 +220,9 @@ class <tt>TQDns::MailServer</tt> contains the following public variables: <p> Note that if you want to iterate over the list, you should iterate over a copy, e.g. <pre> - <a href="ntqvaluelist.html">TQValueList</a><TQDns::MailServer> list = myDns.mailServers(); - TQValueList<TQDns::MailServer>::Iterator it = list.<a href="ntqvaluelist.html#begin">begin</a>(); - while( it != list.<a href="ntqvaluelist.html#end">end</a>() ) { + <a href="tqvaluelist.html">TQValueList</a><TQDns::MailServer> list = myDns.mailServers(); + TQValueList<TQDns::MailServer>::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); + while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); ++it; } @@ -238,8 +238,8 @@ over a copy, e.g. over a copy, e.g. <pre> <a href="ntqstringlist.html">TQStringList</a> list = myDns.qualifiedNames(); - TQStringList::Iterator it = list.<a href="ntqvaluelist.html#begin">begin</a>(); - while( it != list.<a href="ntqvaluelist.html#end">end</a>() ) { + TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); + while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); ++it; } @@ -259,7 +259,7 @@ over a copy, e.g. <a href="#qualifiedNames">qualifiedNames</a>(). <p>Example: <a href="mail-example.html#x707">network/mail/smtp.cpp</a>. -<h3 class=fn><a href="ntqvaluelist.html">TQValueList</a><Server> <a name="servers"></a>TQDns::servers () const +<h3 class=fn><a href="tqvaluelist.html">TQValueList</a><Server> <a name="servers"></a>TQDns::servers () const </h3> Returns a list of servers if the record type is <a href="#RecordType-enum">Srv</a>. The class <tt>TQDns::Server</tt> contains the following public variables: @@ -272,9 +272,9 @@ Returns a list of servers if the record type is <a href="#RecordType-enum">Srv</ <p> Note that if you want to iterate over the list, you should iterate over a copy, e.g. <pre> - <a href="ntqvaluelist.html">TQValueList</a><TQDns::Server> list = myDns.servers(); - TQValueList<TQDns::Server>::Iterator it = list.<a href="ntqvaluelist.html#begin">begin</a>(); - while( it != list.<a href="ntqvaluelist.html#end">end</a>() ) { + <a href="tqvaluelist.html">TQValueList</a><TQDns::Server> list = myDns.servers(); + TQValueList<TQDns::Server>::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); + while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); ++it; } @@ -313,8 +313,8 @@ Returns a list of texts if the record type is <a href="#RecordType-enum">Txt</a> over a copy, e.g. <pre> <a href="ntqstringlist.html">TQStringList</a> list = myDns.texts(); - TQStringList::Iterator it = list.<a href="ntqvaluelist.html#begin">begin</a>(); - while( it != list.<a href="ntqvaluelist.html#end">end</a>() ) { + TQStringList::Iterator it = list.<a href="tqvaluelist.html#begin">begin</a>(); + while( it != list.<a href="tqvaluelist.html#end">end</a>() ) { myProcessing( *it ); ++it; } |