- use a HashTable to stat persistent handles
[m6w6/ext-http] / package2.xml
index 03da6b8922e2569e2acb42c3b6913f98a893b0cb..f90f0228feb1c72c53fae4f60f5f782f28cd4143 100644 (file)
@@ -28,33 +28,28 @@ support. Parallel requests are available for PHP 5 and greater.
   <email>mike@php.net</email>
   <active>yes</active>
  </lead>
- <date>2006-11-22</date>
+ <date>2007-01-23</date>
  <version>
-  <release>1.4.0dev</release>
-  <api>1.4.0</api>
+  <release>1.5.0dev</release>
+  <api>1.5.0</api>
  </version>
  <stability>
-  <release>stable</release>
+  <release>beta</release>
   <api>stable</api>
  </stability>
  <license>BSD, revised</license>
  <notes><![CDATA[
-* Improved response performance
-+ Added "ipresolve" request option
-+ Added HTTP_IPRESOLVE_{ANY|V4|V6}, HttpRequest::IPRESOLVE_{ANY|V4|V6} constants
-+ Added missing HTTP_SSL_VERSION_{ANY|TLSv1|SSLv2|SSLv3}, HttpRequest::SSL_VERSION_{ANY|TLSv1|SSLv2|SSLv3} constants
-* Fixed aborted PUT request when empty put data was set with HttpRequest::setPutData()
-* Fixed crash when using non-associative arrays as request headers
-* Fixed crash when serializing incomplete HttpMessage objects
-* Fixed bug #9282: libcurl version error in configure (keith at iveys dot org)
++ Added HttpMessage::fromEnv(int type[, string class_name = "HttpMessage"]) (Clay Loveless)
++ Added --enable-http-persistent-handles (per-process persistent cURL handles) (Clay Loveless)
++ Added http_persistent_handles_count(), http_persistent_handles_clean([string name])
 ]]></notes>
  <contents>
   <dir name="/">
    <file role="doc" name="LICENSE"/>
    <file role="doc" name="CREDITS"/>
    <file role="doc" name="KnownIssues.txt"/>
+   <file role="doc" name="ThanksTo.txt"/>
    <file role="doc" name="docs/http.ini"/>
-   <file role="doc" name="docs/functions.html"/>
    <file role="doc" name="docs/examples/tutorial.txt"/>
    
    <file role="src" name="http.dsp"/>
@@ -82,6 +77,7 @@ support. Parallel requests are available for PHP 5 and greater.
    <file role="src" name="php_http_headers_api.h"/>
    <file role="src" name="php_http_info_api.h"/>
    <file role="src" name="php_http_message_api.h"/>
+   <file role="src" name="php_http_persistent_handles_api.h"/>
    <file role="src" name="php_http_querystring_api.h"/>
    <file role="src" name="php_http_request_api.h"/>
    <file role="src" name="php_http_request_int.h"/>
@@ -113,6 +109,7 @@ support. Parallel requests are available for PHP 5 and greater.
    <file role="src" name="http_headers_api.c"/>
    <file role="src" name="http_info_api.c"/>
    <file role="src" name="http_message_api.c"/>
+   <file role="src" name="http_persistent_handles_api.c"/>
    <file role="src" name="http_querystring_api.c"/>
    <file role="src" name="http_request_api.c"/>
    <file role="src" name="http_request_info.c"/>
@@ -142,7 +139,11 @@ support. Parallel requests are available for PHP 5 and greater.
    </dir>
    
    <dir name="tests">
-        <file role="test" name="allowed_methods_002_logging.phpt"/>
+    <file role="test" name="data.txt"/>
+    <file role="test" name="urls.txt"/>
+    <file role="test" name="skip.inc"/>
+    <file role="test" name="log.inc"/>
+    <file role="test" name="allowed_methods_002_logging.phpt"/>
     <file role="test" name="allowed_methods_002.phpt"/>
     <file role="test" name="build_str_001.phpt"/>
     <file role="test" name="build_url_001.phpt"/>
@@ -290,9 +291,13 @@ support. Parallel requests are available for PHP 5 and greater.
    prompt="whether to depend on extensions which have been built shared"
    default="yes"
   />
+  <configureoption
+   name="enable-http-persistent-handles"
+   prompt="whether to enable per-process persistent cURL handles"
+   default="no"
+  />
   <filelist>
    <install as="http.ini" name="docs/http.ini"/>
-   <install as="functions.html" name="docs/functions.html"/>
    <install as="examples/tutorial.txt" name="docs/examples/tutorial.txt"/>
    <install as="pecl/http/BigGet.php" name="lib/BigGet.php"/>
    <install as="pecl/http/FeedAggregator.php" name="lib/FeedAggregator.php"/>