diff options
author | Sterling Hughes <sterling@php.net> | 2004-03-12 18:37:55 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2004-03-12 18:37:55 +0000 |
commit | 177db33c63de61cb6a29f814e196e5a6469a51b5 (patch) | |
tree | 7b7a87f3af7e0482d167ecfd6a513fa3e84571e9 /ext/curl/php_curl.h | |
parent | 4a31a6a88b96b07d6c3bf015168384e49c0af806 (diff) | |
download | php-git-177db33c63de61cb6a29f814e196e5a6469a51b5.tar.gz |
add the curl_copy_handle() function which will exactly duplicate a cURL handle.
Useful when you have multiple "similair" transforms as with a multi handle with
only small variances (like the URL)
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r-- | ext/curl/php_curl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index 3e9b9e2cf8..d2a14c43b7 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -61,6 +61,7 @@ PHP_MSHUTDOWN_FUNCTION(curl); PHP_MINFO_FUNCTION(curl); PHP_FUNCTION(curl_version); PHP_FUNCTION(curl_init); +PHP_FUNCTION(curl_copy_handle); PHP_FUNCTION(curl_setopt); PHP_FUNCTION(curl_exec); PHP_FUNCTION(curl_getinfo); |