From: Michael Wallner Date: Mon, 1 Aug 2005 08:04:01 +0000 (+0000) Subject: - release 0.11.0 X-Git-Tag: RELEASE_0_11_0~2 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=81393f5f14aabce6fb7fe1c2ff6412813edcdb79 - release 0.11.0 --- diff --git a/docs/functions.html b/docs/functions.html index 100e1f3..e44c943 100644 --- a/docs/functions.html +++ b/docs/functions.html @@ -205,8 +205,7 @@ array where the following keys will be recognized:

 - redirect:
  - lastmodified:     int, timestamp for If-(Un)Modified-Since header
- timeout: int, seconds the request may take
- connecttimeout: int, seconds the connect may take
- - onprogress: mixed, progress callback
- - ondebug: mixed, debug callback

The optional third parameter will be filled with some additional information
+ - onprogress: mixed, progress callback

The optional third parameter will be filled with some additional information
in form af an associative array, if supplied, like the following example:


<?php
array (
    
'effective_url' => 'http://localhost',
    
'response_code' => 403,
    
'total_time' => 0.017,
    
'namelookup_time' => 0.013,
    
'connect_time' => 0.014,
    
'pretransfer_time' => 0.014,
    
'size_upload' => 0,
    
'size_download' => 202,
    
'speed_download' => 11882,
    
'speed_upload' => 0,
    
'header_size' => 145,
    
'request_size' => 62,
    
'ssl_verifyresult' => 0,
    
'filetime' => -1,
    
'content_length_download' => 202,
    
'content_length_upload' => 0,
    
'starttransfer_time' => 0.017,
    
'content_type' => 'text/html; charset=iso-8859-1',
    
'redirect_time' => 0,
    
'redirect_count' => 0,
    
'private' => '',
    
'http_connectcode' => 0,
    
'httpauth_avail' => 0,
    
'proxyauth_avail' => 0,
)
?>

@@ -410,6 +409,8 @@ Affects only PUT requests.

See http_get() for a full list of returned info.

HttpMessage HttpRequest::getResponseMessage()

Get the full response as HttpMessage object.

+

HttpMessage HttpRequest::getRequestMessage()

+

Get sent HTTP message.

bool HttpRequest::send()

Send the HTTP request.

@@ -541,7 +542,7 @@ Example:




-

Generated at: Mon, 25 Jul 2005 14:47:50 +0200

+

Generated at: Mon, 01 Aug 2005 09:46:36 +0200

diff --git a/package.xml b/package.xml index 6b57a6c..e0f6d17 100644 --- a/package.xml +++ b/package.xml @@ -30,11 +30,16 @@ - 0.10.1 - 2005-07-25 + 0.11.0 + 2005-08-01 beta diff --git a/php_http.h b/php_http.h index e951d7d..fff7bdc 100644 --- a/php_http.h +++ b/php_http.h @@ -18,7 +18,7 @@ #ifndef PHP_EXT_HTTP_H #define PHP_EXT_HTTP_H -#define HTTP_PEXT_VERSION "0.11.0dev" +#define HTTP_PEXT_VERSION "0.11.0" /* make compile on Win32 */ #ifdef HTTP_HAVE_CURL