fix #65316 additional info into curlopts

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@331661 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Joe Watkins 2013-10-04 16:18:41 +00:00
parent fd4b8d965b
commit 9810b1ec48

View file

@ -97,6 +97,18 @@
Requires <constant>CURLOPT_VERBOSE</constant> to be on to have an effect.
</entry>
</row>
<row>
<entry valign="top"><constant>CURLOPT_CONNECT_ONLY</constant></entry>
<entry valign="top">
&true; tells the library to perform all the required proxy authentication
and connection setup, but no data transfer. This option is implemented for
HTTP, SMTP and POP3.
</entry>
<entry valign="top">
Added in 7.15.2.
Available since PHP 5.5.0.
</entry>
</row>
<row>
<entry valign="top"><constant>CURLOPT_CRLF</constant></entry>
<entry valign="top">
@ -775,6 +787,21 @@
Added in cURL 7.16.1.
</entry>
</row>
<row>
<entry valign="top"><constant>CURLOPT_IPRESOLVE</constant></entry>
<entry valign="top">
Allows an application to select what kind of IP addresses to use when
resolving host names. This is only interesting when using host names that
resolve addresses using more than one version of IP, possible values are
<constant>CURLOPT_IPRESOLVE_WHATEVER</constant>,
<constant>CURLOPT_IPRESOLVE_V4</constant>,
<constant>CURLOPT_IPRESOLVE_V6</constant>, by default
<constant>CURLOPT_IPRESOLVE_WHATEVER</constant>.
</entry>
<entry valign="top">
Added in cURL 7.10.8.
</entry>
</row>
</tbody>
</tgroup>
</informaltable>