From 1af3ae8a4d16c4c7c06ce9cb47ce95d606a0ebe0 Mon Sep 17 00:00:00 2001 From: Sara Golemon Date: Sat, 23 Nov 2002 02:25:51 +0000 Subject: [PATCH] Added constants used by dns_get_record() [ DNS_* ] git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@105381 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/network/constants.xml | 65 +++++++++++++++++++++++++++++++-- 1 file changed, 62 insertions(+), 3 deletions(-) diff --git a/reference/network/constants.xml b/reference/network/constants.xml index 942e220423..793ae08043 100644 --- a/reference/network/constants.xml +++ b/reference/network/constants.xml @@ -1,8 +1,8 @@ - +
&reftitle.constants; - &extension.constants.core; + &extension.constants.core; <function>openlog</function> Options @@ -43,7 +43,7 @@ -
+ <function>syslog</function> Priorities (in descending order) @@ -89,6 +89,65 @@
+ + <function>dns_get_record</function> Options + + + + Constant + Description + + + + + DNS_A + IPv4 Address Resource + + + DNS_MX + Mail Exchanger Resource + + + DNS_CNAME + Alias (Canonical Name) Resource + + + DNS_NS + Authoritative Name Server Resource + + + DNS_PTR + Pointer Resource + + + DNS_HINFO + Host Info Resource (See + RFC 1010 + for the meaning of these values) + + + DNS_SOA + Start of Authority Resource + + + DNS_TXT + Text Resource + + + DNS_ANY + Any Resource Record. On most systems + this returns all resource records, however + it should not be counted upon for critical + uses. Try DNS_ALL instead. + + + DNS_ALL + Itteratively query the name server for + each available record type. + + + +