diff --git a/reference/curl/functions/curl-setopt.xml b/reference/curl/functions/curl-setopt.xml index 68a0163d92..563ac4f9a0 100644 --- a/reference/curl/functions/curl-setopt.xml +++ b/reference/curl/functions/curl-setopt.xml @@ -97,6 +97,18 @@ Requires CURLOPT_VERBOSE to be on to have an effect. + + CURLOPT_CONNECT_ONLY + + &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. + + + Added in 7.15.2. + Available since PHP 5.5.0. + + CURLOPT_CRLF @@ -775,6 +787,21 @@ Added in cURL 7.16.1. + + CURLOPT_IPRESOLVE + + 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 + CURLOPT_IPRESOLVE_WHATEVER, + CURLOPT_IPRESOLVE_V4, + CURLOPT_IPRESOLVE_V6, by default + CURLOPT_IPRESOLVE_WHATEVER. + + + Added in cURL 7.10.8. + +