X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=php_http.h;h=09010f8e1685dfc940cbab433308b7e7662958ba;hb=3fcfaba41748c3fd452e84ba6da6ea2d91f28e5e;hp=6ff5418ceb137ad5f5c98776e09a3144fab763a8;hpb=33601b5f7d0b26b1e7f95ca44f349426594fbece;p=m6w6%2Fext-http diff --git a/php_http.h b/php_http.h index 6ff5418..09010f8 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.0.0RC3-dev" +#define PHP_EXT_HTTP_VERSION "1.0.0RC5" #ifdef HAVE_CONFIG_H # include "config.h" @@ -33,9 +33,7 @@ #ifdef HTTP_WANT_SAPI # if PHP_API_VERSION > 20041225 # define HTTP_HAVE_SAPI_RTIME -# define HTTP_GET_REQUEST_TIME() sapi_get_request_time(TSRMLS_C) # else -# define HTTP_GET_REQUEST_TIME() HTTP_G->request_time # endif # include "SAPI.h" #endif @@ -115,18 +113,17 @@ ZEND_BEGIN_MODULE_GLOBALS(http) } send; struct _http_globals_request { + time_t time; struct _http_globals_request_methods { char *allowed; struct _http_globals_request_methods_custom { + char *ini; int count; void *entries; } custom; } methods; } request; -#ifndef HTTP_HAVE_SAPI_RTIME - time_t request_time; -#endif #ifdef ZEND_ENGINE_2 zend_bool only_exceptions; #endif @@ -169,6 +166,7 @@ PHP_FUNCTION(http_chunked_decode); PHP_FUNCTION(http_parse_message); PHP_FUNCTION(http_parse_headers); PHP_FUNCTION(http_parse_cookie); +PHP_FUNCTION(http_parse_params); PHP_FUNCTION(http_get_request_headers); PHP_FUNCTION(http_get_request_body); PHP_FUNCTION(http_get_request_body_stream); @@ -182,6 +180,7 @@ PHP_FUNCTION(http_put_data); PHP_FUNCTION(http_put_file); PHP_FUNCTION(http_put_stream); PHP_FUNCTION(http_request); +PHP_FUNCTION(http_request_body_encode); #endif /* HTTP_HAVE_CURL */ PHP_FUNCTION(http_request_method_register); PHP_FUNCTION(http_request_method_unregister);