From 8d1b5913ed5318d9ea4adba8bff3eee7ab782fc0 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Fri, 18 Aug 2006 12:25:39 +0000 Subject: [PATCH] - release 1.2.0 --- http_send_api.c | 4 ++++ package.xml | 17 +++++++---------- package2.xml | 5 +++-- php_http.h | 2 +- 4 files changed, 15 insertions(+), 13 deletions(-) diff --git a/http_send_api.c b/http_send_api.c index 10bcdc0..ebecb33 100644 --- a/http_send_api.c +++ b/http_send_api.c @@ -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); +#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) diff --git a/package.xml b/package.xml index 2ee9e0b..bd9a6a6 100644 --- a/package.xml +++ b/package.xml @@ -1,6 +1,6 @@ - + pecl_http Extended HTTP Support This HTTP extension aims to provide a convenient and powerful @@ -23,17 +23,14 @@ support. Parallel requests are available for PHP 5 and greater. - 1.1.0 - 2006-07-17 + 1.2.0 + 2006-08-18 BSD, revised stable - * Fixed endless loop in http_build_url("..") -* 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 + + 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 diff --git a/package2.xml b/package2.xml index 400d12f..3ea2b84 100644 --- a/package2.xml +++ b/package2.xml @@ -28,7 +28,7 @@ support. Parallel requests are available for PHP 5 and greater. mike@php.net yes - 2006-00-00 + 2006-08-18 1.2.0 1.2.0 @@ -39,9 +39,10 @@ support. Parallel requests are available for PHP 5 and greater. BSD, revised diff --git a/php_http.h b/php_http.h index 2f0cf52..a1dfb97 100644 --- a/php_http.h +++ b/php_http.h @@ -15,7 +15,7 @@ #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" -- 2.30.2