X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_cache_api.c;h=d03ee85c2c17bae53da40b24e2edb9055f1be025;hp=9b2b8aacfacbdd3c03171affdb8e054b4a5a7784;hb=afd561b680a07837192efbdb9ffe248def36f8e9;hpb=61f165688d2cc39424678829a145c8cbab51d1af diff --git a/http_cache_api.c b/http_cache_api.c index 9b2b8aa..d03ee85 100644 --- a/http_cache_api.c +++ b/http_cache_api.c @@ -39,6 +39,31 @@ ZEND_EXTERN_MODULE_GLOBALS(http); +STATUS _http_cache_global_init(INIT_FUNC_ARGS) +{ + HTTP_LONG_CONSTANT("HTTP_ETAG_MD5", HTTP_ETAG_MD5); + HTTP_LONG_CONSTANT("HTTP_ETAG_SHA1", HTTP_ETAG_SHA1); + HTTP_LONG_CONSTANT("HTTP_ETAG_CRC32", HTTP_ETAG_CRC32); + +#ifdef HTTP_HAVE_MHASH + { + int l, i, c = mhash_count(); + + for (i = 0; i <= c; ++i) { + char const_name[256] = {0}; + const char *hash_name = mhash_get_hash_name_static(i); + + if (hash_name) { + l = snprintf(const_name, 255, "HTTP_ETAG_MHASH_%s", hash_name); + zend_register_long_constant(const_name, l + 1, i, CONST_CS|CONST_PERSISTENT, module_number TSRMLS_CC); + } + } + } +#endif + + return SUCCESS; +} + /* {{{ char *http_etag(void *, size_t, http_send_mode) */ PHP_HTTP_API char *_http_etag(const void *data_ptr, size_t data_len, http_send_mode data_mode TSRMLS_DC) {