From: Pierre Joye Date: Mon, 4 May 2009 14:11:34 +0000 (+0000) Subject: - [DOC] a note about the symbol -> version page/doc X-Git-Tag: php-5.4.0alpha1~191^2~3764 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d98192934ba275c27d0f91f5e5d9c5cece68fd0;p=php - [DOC] a note about the symbol -> version page/doc --- diff --git a/ext/curl/interface.c b/ext/curl/interface.c index e8ea932899..807d0a96ab 100644 --- a/ext/curl/interface.c +++ b/ext/curl/interface.c @@ -442,6 +442,11 @@ PHP_MINIT_FUNCTION(curl) le_curl = zend_register_list_destructors_ex(_php_curl_close, NULL, "curl", module_number); le_curl_multi_handle = zend_register_list_destructors_ex(_php_curl_multi_close, NULL, "curl", module_number); + + /* See http://curl.haxx.se/lxr/source/docs/libcurl/symbols-in-versions + or curl src/docs/libcurl/symbols-in-versions for a (almost) complete list + of options and which version they were introduced */ + /* Constants for curl_setopt() */ REGISTER_CURL_CONSTANT(CURLOPT_IPRESOLVE); REGISTER_CURL_CONSTANT(CURL_IPRESOLVE_WHATEVER);