iliaa           Wed Dec  6 16:25:17 2006 UTC

  Modified files:              
    /php-src/ext/curl   multi.c 
  Log:
  Make functions as being unicode safe
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/curl/multi.c?r1=1.28&r2=1.29&diff_format=u
Index: php-src/ext/curl/multi.c
diff -u php-src/ext/curl/multi.c:1.28 php-src/ext/curl/multi.c:1.29
--- php-src/ext/curl/multi.c:1.28       Fri Oct  6 03:49:04 2006
+++ php-src/ext/curl/multi.c    Wed Dec  6 16:25:17 2006
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: multi.c,v 1.28 2006/10/06 03:49:04 sebastian Exp $ */
+/* $Id: multi.c,v 1.29 2006/12/06 16:25:17 iliaa Exp $ */
 
 #define ZEND_INCLUDE_FULL_WINDOWS_HEADERS
 
@@ -49,7 +49,7 @@
 #include <unistd.h>
 #endif
 
-/* {{{ proto resource curl_multi_init(void)
+/* {{{ proto resource curl_multi_init(void) U
    Returns a new cURL multi handle */
 PHP_FUNCTION(curl_multi_init)
 {
@@ -68,7 +68,7 @@
 }
 /* }}} */
 
-/* {{{ proto int curl_multi_add_handle(resource mh, resource ch)
+/* {{{ proto int curl_multi_add_handle(resource mh, resource ch) U
    Add a normal cURL handle to a cURL multi handle */
 PHP_FUNCTION(curl_multi_add_handle)
 {
@@ -130,7 +130,7 @@
 }
 
 
-/* {{{ proto int curl_multi_remove_handle(resource mh, resource ch)
+/* {{{ proto int curl_multi_remove_handle(resource mh, resource ch) U
    Remove a multi handle from a set of cURL handles */
 PHP_FUNCTION(curl_multi_remove_handle)
 {
@@ -164,7 +164,7 @@
        to->tv_usec = conv % 1000000;
 }
 
-/* {{{ proto int curl_multi_select(resource mh[, double timeout])
+/* {{{ proto int curl_multi_select(resource mh[, double timeout]) U
    Get all the sockets associated with the cURL extension, which can then be 
"selected" */
 PHP_FUNCTION(curl_multi_select)
 {
@@ -194,7 +194,7 @@
 }
 /* }}} */
 
-/* {{{ proto int curl_multi_exec(resource mh, int &still_running) 
+/* {{{ proto int curl_multi_exec(resource mh, int &still_running) U
    Run the sub-connections of the current cURL handle */
 PHP_FUNCTION(curl_multi_exec)
 {
@@ -219,7 +219,7 @@
 }
 /* }}} */
 
-/* {{{ proto string curl_multi_getcontent(resource ch)
+/* {{{ proto string curl_multi_getcontent(resource ch) U
    Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set */
 PHP_FUNCTION(curl_multi_getcontent)
 {
@@ -239,7 +239,7 @@
 }
 /* }}} */
 
-/* {{{ proto array curl_multi_info_read(resource mh [, long msgs_in_queue])
+/* {{{ proto array curl_multi_info_read(resource mh [, long msgs_in_queue]) U
    Get information about the current transfers */
 PHP_FUNCTION(curl_multi_info_read)
 {
@@ -302,7 +302,7 @@
 }
 /* }}} */
 
-/* {{{ proto void curl_multi_close(resource mh)
+/* {{{ proto void curl_multi_close(resource mh) U
    Close a set of cURL handles */
 PHP_FUNCTION(curl_multi_close)
 {

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

Reply via email to