mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
Bug #17174. Added support for IPv6 (AAAA record) in checkdnsrr (dns_check_record), and dns_get_record
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@107178 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
22aa59d469
commit
dd92492982
3 changed files with 22 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<section id="network.constants">
|
||||
&reftitle.constants;
|
||||
&extension.constants.core;
|
||||
|
@ -140,6 +140,10 @@
|
|||
it should not be counted upon for critical
|
||||
uses. Try DNS_ALL instead.</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>DNS_AAAA</entry>
|
||||
<entry>IPv6 Address Resource</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>DNS_ALL</entry>
|
||||
<entry>Itteratively query the name server for
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- splitted from ./en/functions/network.xml, last change in rev 1.2 -->
|
||||
<refentry id="function.checkdnsrr">
|
||||
<refnamediv>
|
||||
|
@ -24,12 +24,19 @@
|
|||
</simpara>
|
||||
<simpara>
|
||||
<parameter>type</parameter> may be any one of: A, MX, NS, SOA,
|
||||
PTR, CNAME, or ANY. The default is MX.
|
||||
PTR, CNAME, AAAA, or ANY. The default is MX.
|
||||
</simpara>
|
||||
<simpara>
|
||||
<parameter>Host</parameter> may either be the IP address in
|
||||
dotted-quad notation or the host name.
|
||||
</simpara>
|
||||
<para>
|
||||
<note>
|
||||
<simpara>
|
||||
AAAA type added with PHP 4.3.0
|
||||
</simpara>
|
||||
</note>
|
||||
</para>
|
||||
¬e.no-windows;
|
||||
<simpara>
|
||||
See also <function>getmxrr</function>,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.6 $ -->
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<refentry id="function.dns-get-record">
|
||||
<refnamediv>
|
||||
<refname>dns_get_record</refname>
|
||||
|
@ -83,6 +83,7 @@
|
|||
<constant>DNS_HINFO</constant>, <constant>DNS_MX</constant>,
|
||||
<constant>DNS_NS</constant>, <constant>DNS_PTR</constant>,
|
||||
<constant>DNS_SOA</constant>, <constant>DNS_TXT</constant>,
|
||||
<constant>DNS_AAAA</constant>,
|
||||
<constant>DNS_ALL</constant> or <constant>DNS_ANY</constant>.
|
||||
The default is <emphasis>DNS_ANY</emphasis>.
|
||||
<note>
|
||||
|
@ -188,6 +189,12 @@
|
|||
resource records.
|
||||
</entry>
|
||||
</row>
|
||||
<row>
|
||||
<entry>AAAA</entry>
|
||||
<entry>
|
||||
<literal>ipv6</literal>: IPv6 address
|
||||
</entry>
|
||||
</row>
|
||||
</tbody>
|
||||
</tgroup>
|
||||
</table>
|
||||
|
|
Loading…
Reference in a new issue