pollita         Sun Dec  8 03:51:55 2002 EDT

  Modified files:              
    /phpdoc/en/reference/network        constants.xml 
    /phpdoc/en/reference/network/functions      dns-get-record.xml 
                                                checkdnsrr.xml 
  Log:
  Bug #17174. Added support for IPv6 (AAAA record) in checkdnsrr (dns_check_record), 
and dns_get_record
  
  
Index: phpdoc/en/reference/network/constants.xml
diff -u phpdoc/en/reference/network/constants.xml:1.2 
phpdoc/en/reference/network/constants.xml:1.3
--- phpdoc/en/reference/network/constants.xml:1.2       Fri Nov 22 21:25:51 2002
+++ phpdoc/en/reference/network/constants.xml   Sun Dec  8 03:51:55 2002
@@ -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;
@@ -139,6 +139,10 @@
         this returns all resource records, however
         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>
Index: phpdoc/en/reference/network/functions/dns-get-record.xml
diff -u phpdoc/en/reference/network/functions/dns-get-record.xml:1.6 
phpdoc/en/reference/network/functions/dns-get-record.xml:1.7
--- phpdoc/en/reference/network/functions/dns-get-record.xml:1.6        Thu Dec  5 
23:16:17 2002
+++ phpdoc/en/reference/network/functions/dns-get-record.xml    Sun Dec  8 03:51:55 
+2002
@@ -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>
@@ -186,6 +187,12 @@
            client can continue to use a DNS resolution before it should request 
            a new resolution from the server.  Can be overridden by individual 
            resource records.          
+          </entry>
+         </row>
+         <row>
+          <entry>AAAA</entry>
+          <entry>
+           <literal>ipv6</literal>: IPv6 address
           </entry>
          </row>
         </tbody>
Index: phpdoc/en/reference/network/functions/checkdnsrr.xml
diff -u phpdoc/en/reference/network/functions/checkdnsrr.xml:1.2 
phpdoc/en/reference/network/functions/checkdnsrr.xml:1.3
--- phpdoc/en/reference/network/functions/checkdnsrr.xml:1.2    Wed Apr 17 02:42:00 
2002
+++ phpdoc/en/reference/network/functions/checkdnsrr.xml        Sun Dec  8 03:51:55 
+2002
@@ -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>
     &note.no-windows;
     <simpara>
      See also <function>getmxrr</function>,



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to