X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=php_http.h;h=6c378a224e5926827f95c50d23c92920e020588b;hb=e6eb95d3183f3a00257c9bb698ad74919e0d181a;hp=1c62e822d03178bb91baefc886edcc1cab048009;hpb=d025312f11743dbe80858ecb3a1bb0d0a0e3155f;p=m6w6%2Fext-http diff --git a/php_http.h b/php_http.h index 1c62e82..6c378a2 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.0RC4-dev" +#define PHP_EXT_HTTP_VERSION "1.0.0RC5-dev" #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);