[PHP-DEV] curl multi

2003-03-17 Thread Wico de Leeuw
Hiya, If someone has some spare time could he look at curl_multi_info_read() i'd like to use (test) the curl_multi functions, but without the curl_multi_info_read it isn't really usefull (and when i look at the source i thing it's almost finished) P.S. when i test them i'll report back to you

[PHP-DEV] Curl Multi Interface Patch

2002-10-19 Thread Boris Bukowski
Hi, now I made a Patch that is hopefully ok for you ;^) I introduced the following functions: curl_multi_init(); curl_multi_add ($multi,$ch1); curl_multi_add ($multi,$ch2); curl_multi_exec($multi); curl_get_content($ch1); thx, Boris ? // creates a multi session $multi = curl_multi_init();

[PHP-DEV] Curl multi interface in php_curl

2002-10-13 Thread Boris Bukowski
Hi, i introduced the curl multi interface in php_curl. Is this the right Place to post and discuss my Patch ? Here an example what i introduced: ? // creates a multi session $multi = curl_multi_init(); // start of a normal easy session $ch1 = curl_init(http://192.168.4.2/;); $ch2 =

Re: [PHP-DEV] Curl multi interface in php_curl

2002-10-13 Thread Sander Roobol
On Sun, Oct 13, 2002 at 06:15:23PM +0200, Boris Bukowski wrote: i introduced the curl multi interface in php_curl. Cool! Is this the right Place to post and discuss my Patch ? Yep, please post it here as an attachment. Please note that we just started QA on PHP 4.3.0-dev so this patch might

[PHP-DEV] Curl multi Interface Patch

2002-10-13 Thread Boris Bukowski
Hi, this works for me with curl-7.9.8 and php-4.2.3 under Linux. Problems are: * curl_easy_cleanup segfaults after curl_multi_cleanup * I have to introduce Version checking in these m4 Files Please give me suggestions howto make it clean and stable. thx Boris Here an example what this patch

Re: [PHP-DEV] Curl multi Interface Patch

2002-10-13 Thread Wez Furlong
Hi Boris, PHP 4.3 already has the needed checks for curl with the multi interface. Please read the README.SUBMITTING_PATCH file; your patch should be against CVS and not PHP 4.2 (which is really getting old now!). Also, you should Cc your patch to the curl extension maintiner Sterling Hughes