X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=http.c;h=4a7ccd969e81ace1da141861d238b045e4211d50;hb=92f5e5a5df0bff3d8076c1f5ed73590b40849501;hp=b81c8cb00ff5986a33a6686d73adba3f8cc2b4d2;hpb=3f048c60b3f3b8151eb86121eed8c9b8927c55dc;p=m6w6%2Fext-http diff --git a/http.c b/http.c index b81c8cb..4a7ccd9 100644 --- a/http.c +++ b/http.c @@ -36,6 +36,7 @@ #endif #ifdef ZEND_ENGINE_2 +# include "php_http_filter_api.h" # include "php_http_util_object.h" # include "php_http_message_object.h" # ifndef WONKY @@ -216,6 +217,11 @@ PHP_INI_MH(http_update_allowed_methods) return OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC); } +#undef CASE_HTTP_ETAG_HASH +#define CASE_HTTP_ETAG_HASH(HASH) \ + case HTTP_ETAG_##HASH: \ + ZEND_WRITE(#HASH, lenof(#HASH)); \ + break; PHP_INI_DISP(http_etag_mode_displayer) { long value; @@ -230,20 +236,19 @@ PHP_INI_DISP(http_etag_mode_displayer) switch (value) { - case HTTP_ETAG_CRC32: - ZEND_WRITE("HTTP_ETAG_CRC32", lenof("HTTP_ETAG_CRC32")); - break; - - case HTTP_ETAG_SHA1: - ZEND_WRITE("HTTP_ETAG_SHA1", lenof("HTTP_ETAG_SHA1")); - break; - - case HTTP_ETAG_MD5: +#ifdef HTTP_HAVE_HASH_EXT + CASE_HTTP_ETAG_HASH(RIPEMD160); + CASE_HTTP_ETAG_HASH(RIPEMD128); + CASE_HTTP_ETAG_HASH(SHA512); + CASE_HTTP_ETAG_HASH(SHA384); + CASE_HTTP_ETAG_HASH(SHA256); +#endif + CASE_HTTP_ETAG_HASH(CRC32); + CASE_HTTP_ETAG_HASH(SHA1); #ifndef HTTP_HAVE_MHASH default: #endif - ZEND_WRITE("HTTP_ETAG_MD5", lenof("HTTP_ETAG_MD5")); - break; + CASE_HTTP_ETAG_HASH(MD5); #ifdef HTTP_HAVE_MHASH default: @@ -300,14 +305,15 @@ PHP_MINIT_FUNCTION(http) } #ifdef ZEND_ENGINE_2 - if ( (SUCCESS != PHP_MINIT_CALL(http_util_object)) || + if ( (SUCCESS != PHP_MINIT_CALL(http_filter)) || + (SUCCESS != PHP_MINIT_CALL(http_util_object)) || (SUCCESS != PHP_MINIT_CALL(http_message_object)) || # ifndef WONKY (SUCCESS != PHP_MINIT_CALL(http_response_object)) || # endif /* WONKY */ # ifdef HTTP_HAVE_CURL (SUCCESS != PHP_MINIT_CALL(http_request_object)) || - (SUCCESS != PHP_MINIT_CALL(http_requestpool_object)) || + (SUCCESS != PHP_MINIT_CALL(http_requestpool_object))|| # endif /* HTTP_HAVE_CURL */ (SUCCESS != PHP_MINIT_CALL(http_exception_object))) { return FAILURE; @@ -332,10 +338,9 @@ PHP_MSHUTDOWN_FUNCTION(http) /* {{{ PHP_RINIT_FUNCTION */ PHP_RINIT_FUNCTION(http) { - char *m; - - if (m = INI_STR("http.allowed_methods")) { - http_check_allowed_methods(m, strlen(m)); + if (HTTP_G(request).methods.allowed) { + http_check_allowed_methods(HTTP_G(request).methods.allowed, + strlen(HTTP_G(request).methods.allowed)); } http_globals_init(HTTP_GLOBALS); @@ -417,7 +422,11 @@ PHP_MINFO_FUNCTION(http) php_info_print_table_colspan_header(2, "Supported ETag Hash Algorithms"); { - php_info_print_table_row(2, "PHP", "CRC32, MD5, SHA1"); + php_info_print_table_row(2, "PHP", "CRC32, MD5, SHA1" +#ifdef HTTP_HAVE_HASH_EXT + ", SHA256, SHA384, SHA512, RIPEMD128, RIPEMD160" +#endif + ); #ifdef HTTP_HAVE_MHASH { phpstr *algos = phpstr_new();