[PHP-DEV] Re: Curl Multi Interface Patch

2002-10-20 Thread Boris Bukowski
Am Sunday 20 October 2002 03:31 schrieb Sterling Hughes: > On Sun, 2002-10-20 at 02:16, Boris Bukowski wrote: > > > ok, i can see the use in that, however, i think it can be more useful > > > if you give the user the option of when to use the select() call - > > >

[PHP-DEV] Re: Curl Multi Interface Patch

2002-10-19 Thread Boris Bukowski
> ok, i can see the use in that, however, i think it can be more useful if > you give the user the option of when to use the select() call - that's > the whole point of the cURL multi interface, and while it may be useful > in this case, the interface was designed to be much more powerful, and > t

[PHP-DEV] Re: Curl Multi Interface Patch

2002-10-19 Thread Boris Bukowski
Am Saturday 19 October 2002 23:59 schrieb Sterling Hughes: > On Sat, 2002-10-19 at 15:42, Boris Bukowski wrote: > > Hi, > > > > now I made a Patch that is hopefully ok for you ;^) > > > > I introduced the following functions: > > > > curl_

[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 http://192.168.4.2/";); $ch2 = curl_init("http://192.168.4.

[PHP-DEV] Curl multi Interface Patch

2002-10-13 Thread Boris Bukowski
/ executing all curl_multi_exec($multi); // getting content $c1=curl_get_content($ch1); $c2=curl_get_content($ch2); curl_close($ch1); curl_close($ch2); echo "ch1=".strlen($c1); echo "ch2=".strlen($c2); ?> Regards Boris Bukowski diff -ur php-4.2.3_orig/ext/curl/curl.c php-4.2.3/ext/c

[PHP-DEV] Curl multi interface in php_curl

2002-10-13 Thread Boris Bukowski
=".strlen($c1); echo "ch2=".strlen($c2); ?> Regards Boris Bukowski -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php