hholzgra                Mon Mar 17 08:11:19 2003 EDT

  Modified files:              
    /php4/ext/curl      multi.c 
  Log:
  proto fixes
  
Index: php4/ext/curl/multi.c
diff -u php4/ext/curl/multi.c:1.5 php4/ext/curl/multi.c:1.6
--- php4/ext/curl/multi.c:1.5   Tue Feb 25 02:19:44 2003
+++ php4/ext/curl/multi.c       Mon Mar 17 08:11:19 2003
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: multi.c,v 1.5 2003/02/25 07:19:44 sniper Exp $ */
+/* $Id: multi.c,v 1.6 2003/03/17 13:11:19 hholzgra Exp $ */
 
 #define ZEND_INCLUDE_FULL_WINDOWS_HEADERS
 
@@ -62,7 +62,7 @@
 }
 /* }}} */
 
-/* {{{ int curl_multi_add_handle(resource multi, resource ch)
+/* {{{ proto int curl_multi_add_handle(resource multi, resource ch)
    Add a normal cURL handle to a cURL multi handle */
 PHP_FUNCTION(curl_multi_add_handle)
 {
@@ -119,7 +119,7 @@
        to->tv_usec = conv % 1000000;
 }
 
-/* {{{ int curl_multi_select(resource mh[, double timeout])
+/* {{{ proto int curl_multi_select(resource mh[, double timeout])
    Get all the sockets associated with the cURL extension, which can then be 
"selected" */
 PHP_FUNCTION(curl_multi_select)
 {
@@ -230,6 +230,8 @@
 }
 /* }}} */
 
+/* {{{ proto void curl_multi_close(resource mh)
+       Close a set of cURL handles */
 PHP_FUNCTION(curl_multi_close)
 {
        zval      *z_mh;
@@ -243,6 +245,7 @@
 
        zend_list_delete(Z_LVAL_P(z_mh));
 }
+/* }}} */
 
 void _php_curl_multi_close(zend_rsrc_list_entry *rsrc)
 {



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to