From: Michael Wallner Date: Thu, 8 Feb 2007 13:34:02 +0000 (+0000) Subject: - 1.5.0RC1 X-Git-Tag: RELEASE_1_5_0_RC1~1 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=6a8d8f34361e89ea6e9b7b2737f0a8baf94705f2 - 1.5.0RC1 --- diff --git a/docs/http.ini b/docs/http.ini index f2b2f30..a7ab0f6 100644 --- a/docs/http.ini +++ b/docs/http.ini @@ -53,3 +53,6 @@ ; global HttpRequestDataShare settings ;http.request.datashare.cookie = 0 ;http.request.datashare.dns = 1 + +; default ident of persistent handles +;http.persistent.handles.ident = "GLOBAL" diff --git a/http_functions.c b/http_functions.c index 791aa1e..4ddbda1 100644 --- a/http_functions.c +++ b/http_functions.c @@ -830,7 +830,7 @@ PHP_FUNCTION(http_persistent_handles_clean) } /* }}} */ -/* {{{ proto string http_persistent_handles_ident(string ident) */ +/* {{{ proto string http_persistent_handles_ident([string ident]) */ PHP_FUNCTION(http_persistent_handles_ident) { char *ident_str = NULL; diff --git a/package.xml b/package.xml index 530e41a..0f559aa 100644 --- a/package.xml +++ b/package.xml @@ -23,11 +23,15 @@ support. Parallel requests are available for PHP 5 and greater. - 1.4.0 - 2007-01-23 + 1.5.0RC1 + 2007-02-08 BSD, revised - stable - * Allow response codes up to 599 in HttpMessage::setResponseCode() + beta + + Added HttpMessage::fromEnv(int type[, string class_name = "HttpMessage"]) (Clay Loveless) ++ Added support for per process persistent cURL handles (requested by Clay Loveless): + o Added --enable-http-persistent-handles configure option + o Added http_persistent_handles_count(), http_persistent_handles_clean([string name]), http_persistent_handles_ident([string ident]) + o Added http.persistent.handles.ident INI setting @@ -38,6 +42,7 @@ support. Parallel requests are available for PHP 5 and greater. + @@ -133,6 +138,7 @@ support. Parallel requests are available for PHP 5 and greater. + @@ -188,6 +194,7 @@ support. Parallel requests are available for PHP 5 and greater. + @@ -222,6 +229,7 @@ support. Parallel requests are available for PHP 5 and greater. + diff --git a/package2.xml b/package2.xml index 82714db..466a759 100644 --- a/package2.xml +++ b/package2.xml @@ -28,9 +28,9 @@ support. Parallel requests are available for PHP 5 and greater. mike@php.net yes - 2007-01-23 + 2007-02-08 - 1.5.0dev + 1.5.0RC1 1.5.0 @@ -40,8 +40,10 @@ support. Parallel requests are available for PHP 5 and greater. BSD, revised @@ -77,7 +79,7 @@ support. Parallel requests are available for PHP 5 and greater. - + @@ -109,7 +111,7 @@ support. Parallel requests are available for PHP 5 and greater. - + @@ -216,6 +218,7 @@ support. Parallel requests are available for PHP 5 and greater. + diff --git a/php_http.h b/php_http.h index 62cb1bc..005498b 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.5.0dev" +#define PHP_EXT_HTTP_VERSION "1.5.0RC1" #ifdef HAVE_CONFIG_H # include "config.h" diff --git a/php_http_persistent_handle_api.h b/php_http_persistent_handle_api.h index 7461b42..fc5507c 100644 --- a/php_http_persistent_handle_api.h +++ b/php_http_persistent_handle_api.h @@ -44,3 +44,12 @@ PHP_HTTP_API STATUS _http_persistent_handle_release_ex(const char *name_str, siz #endif /* HTTP_HAVE_PERSISTENT_HANDLES */ #endif /* HTTP_PERSISTENT_HANDLE_H */ + +/* + * Local variables: + * tab-width: 4 + * c-basic-offset: 4 + * End: + * vim600: noet sw=4 ts=4 fdm=marker + * vim<600: noet sw=4 ts=4 + */