X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_cache_api.h;h=8df20a0cce159931d5adf339c643044937c628f4;hp=6c2121c9c787f9571aeb454317ba47b560e01b9c;hb=refs%2Fheads%2Fv1.7.x;hpb=1382fe5a3ed5209ab05745ca95495885e85ff2a0 diff --git a/php_http_cache_api.h b/php_http_cache_api.h index 6c2121c..8df20a0 100644 --- a/php_http_cache_api.h +++ b/php_http_cache_api.h @@ -6,7 +6,7 @@ | modification, are permitted provided that the conditions mentioned | | in the accompanying LICENSE file are met. | +--------------------------------------------------------------------+ - | Copyright (c) 2004-2006, Michael Wallner | + | Copyright (c) 2004-2010, Michael Wallner | +--------------------------------------------------------------------+ */ @@ -20,14 +20,9 @@ #include "ext/standard/crc32.h" #include "ext/standard/sha1.h" #include "ext/standard/md5.h" -#if defined(HTTP_HAVE_EXT_HASH) + +#ifdef HTTP_HAVE_HASH # include "php_hash.h" -#elif defined(HTTP_HAVE_HASH_EXT_HASH) -# define HTTP_HAVE_EXT_HASH -# include "hash/php_hash.h" -#elif defined(HTTP_HAVE_EXT_HASH_EXT_HASH) -# define HTTP_HAVE_EXT_HASH -# include "ext/hash/php_hash.h" #endif #define http_etag_digest(d, l) _http_etag_digest((d), (l)) @@ -53,8 +48,8 @@ static inline void *_http_etag_init(TSRMLS_D) void *ctx = NULL; char *mode = HTTP_G->etag.mode; -#ifdef HTTP_HAVE_EXT_HASH - php_hash_ops *eho = NULL; +#ifdef HTTP_HAVE_HASH + const php_hash_ops *eho = NULL; if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) { ctx = emalloc(eho->context_size); @@ -79,8 +74,8 @@ static inline char *_http_etag_finish(void *ctx TSRMLS_DC) unsigned char digest[128] = {0}; char *etag = NULL, *mode = HTTP_G->etag.mode; -#ifdef HTTP_HAVE_EXT_HASH - php_hash_ops *eho = NULL; +#ifdef HTTP_HAVE_HASH + const php_hash_ops *eho = NULL; if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) { eho->hash_final(digest, ctx); @@ -106,8 +101,8 @@ static inline char *_http_etag_finish(void *ctx TSRMLS_DC) static inline void _http_etag_update(void *ctx, const char *data_ptr, size_t data_len TSRMLS_DC) { char *mode = HTTP_G->etag.mode; -#ifdef HTTP_HAVE_EXT_HASH - php_hash_ops *eho = NULL; +#ifdef HTTP_HAVE_HASH + const php_hash_ops *eho = NULL; if (mode && (eho = php_hash_fetch_ops(mode, strlen(mode)))) { eho->hash_update(ctx, (const unsigned char *) data_ptr, data_len); @@ -116,7 +111,7 @@ static inline void _http_etag_update(void *ctx, const char *data_ptr, size_t dat if (mode && ((!strcasecmp(mode, "crc32")) || (!strcasecmp(mode, "crc32b")))) { uint i, c = *((uint *) ctx); for (i = 0; i < data_len; ++i) { - c = CRC32(c, data_ptr[i]); + CRC32(c, data_ptr[i]); } *((uint *)ctx) = c; } else if (mode && (!strcasecmp(mode, "sha1"))) {