- release 1.2.0
authorMichael Wallner <mike@php.net>
Fri, 18 Aug 2006 12:25:39 +0000 (12:25 +0000)
committerMichael Wallner <mike@php.net>
Fri, 18 Aug 2006 12:25:39 +0000 (12:25 +0000)
http_send_api.c
package.xml
package2.xml
php_http.h

index 10bcdc0ba3b83db4233b390f37166b4513dcc69b..ebecb33e94fa482ee448b903e01e911cb8c7ff57 100644 (file)
@@ -35,6 +35,10 @@ static inline void _http_flush(void *nothing, const char *data, size_t data_len
        php_end_ob_buffer(1, 1 TSRMLS_CC);
        sapi_flush(TSRMLS_C);
        
        php_end_ob_buffer(1, 1 TSRMLS_CC);
        sapi_flush(TSRMLS_C);
        
+#if 0
+       fprintf(stderr, "Flushing after writing %u bytes\n", (uint) data_len);
+#endif
+       
 #define HTTP_MSEC(s) (s * 1000)
 #define HTTP_USEC(s) (HTTP_MSEC(s) * 1000)
 #define HTTP_NSEC(s) (HTTP_USEC(s) * 1000)
 #define HTTP_MSEC(s) (s * 1000)
 #define HTTP_USEC(s) (HTTP_MSEC(s) * 1000)
 #define HTTP_NSEC(s) (HTTP_USEC(s) * 1000)
index 2ee9e0bc568a6f738ec53936ff2c137c68d99809..bd9a6a6b180775ae8a49d0ed599a495e8cbddacf 100644 (file)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE package SYSTEM "http://pear.php.net/dtd/package-1.0">
-<package version="1.0" packagerversion="1.4.10RC1">
+<package version="1.0" packagerversion="1.4.11">
  <name>pecl_http</name>
  <summary>Extended HTTP Support</summary>
  <description>This HTTP extension aims to provide a convenient and powerful 
  <name>pecl_http</name>
  <summary>Extended HTTP Support</summary>
  <description>This HTTP extension aims to provide a convenient and powerful 
@@ -23,17 +23,14 @@ support. Parallel requests are available for PHP 5 and greater.
   </maintainer>
   </maintainers>
  <release>
   </maintainer>
   </maintainers>
  <release>
-  <version>1.1.0</version>
-  <date>2006-07-17</date>
+  <version>1.2.0</version>
+  <date>2006-08-18</date>
   <license>BSD, revised</license>
   <state>stable</state>
   <license>BSD, revised</license>
   <state>stable</state>
-  <notes>* Fixed endless loop in http_build_url(&quot;..&quot;)
-* Fixed HttpResponse::capture() failure if buffered output exceeds 40k
-* Fixed HttpQueryString failures with objects as params
-* Fixed memory leaks with overloaded classes extending HTTP classes
-* Added HttpQueryString::mod(array $params) method
-* Added ArrayAccess to interfaces implemented by HttpQueryString
-* Added HttpMessage::getHeader(string $name) method
+  <notes>+ Improved response performance (HttpResponse, http_send API)
+* Fixed http_parse_cookie() allowed_extras and flags parameters
+* Added http_build_cookie() function
+* Fixed configuration with shared dependencies
   </notes>
   <deps>
    <dep type="php" rel="ge" version="4.3"/>
   </notes>
   <deps>
    <dep type="php" rel="ge" version="4.3"/>
index 400d12fde9cec1b781e5339f1cba840553271e2e..3ea2b844dcb1ccbadfacb7c16641a7a9ad5f9ce1 100644 (file)
@@ -28,7 +28,7 @@ support. Parallel requests are available for PHP 5 and greater.
   <email>mike@php.net</email>
   <active>yes</active>
  </lead>
   <email>mike@php.net</email>
   <active>yes</active>
  </lead>
- <date>2006-00-00</date>
+ <date>2006-08-18</date>
  <version>
   <release>1.2.0</release>
   <api>1.2.0</api>
  <version>
   <release>1.2.0</release>
   <api>1.2.0</api>
@@ -39,9 +39,10 @@ support. Parallel requests are available for PHP 5 and greater.
  </stability>
  <license>BSD, revised</license>
  <notes><![CDATA[
  </stability>
  <license>BSD, revised</license>
  <notes><![CDATA[
-- Improve response performance
++ Improved response performance (HttpResponse, http_send API)
 * Fixed http_parse_cookie() allowed_extras and flags parameters
 * Added http_build_cookie() function
 * Fixed http_parse_cookie() allowed_extras and flags parameters
 * Added http_build_cookie() function
+* Fixed configuration with shared dependencies
 ]]></notes>
  <contents>
   <dir name="/">
 ]]></notes>
  <contents>
   <dir name="/">
index 2f0cf52c64a7328b7270d827b517f56468dd2404..a1dfb97d259cb41ad64f6211b46dc54158cc37df 100644 (file)
@@ -15,7 +15,7 @@
 #ifndef PHP_EXT_HTTP_H
 #define PHP_EXT_HTTP_H
 
 #ifndef PHP_EXT_HTTP_H
 #define PHP_EXT_HTTP_H
 
-#define PHP_EXT_HTTP_VERSION "1.2.0dev"
+#define PHP_EXT_HTTP_VERSION "1.2.0"
 
 #ifdef HAVE_CONFIG_H
 #      include "config.h"
 
 #ifdef HAVE_CONFIG_H
 #      include "config.h"