- use const php_hash_ops*
[m6w6/ext-http] / php_http_cache_api.h
index 5bd727e5faaae7b5c5c1e88b094ed732299ab350..518a5f80f534e0f2d750bc0bb176943f516c2b2e 100644 (file)
 #include "ext/standard/crc32.h"
 #include "ext/standard/sha1.h"
 #include "ext/standard/md5.h"
-#if HTTP_HAVE_EXT(HASH)
-#      if defined(HTTP_HAVE_EXT_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
+
+#ifdef HTTP_HAVE_HASH
+#      include "php_hash.h"
 #endif
 
 #define http_etag_digest(d, l) _http_etag_digest((d), (l))
@@ -55,8 +48,8 @@ static inline void *_http_etag_init(TSRMLS_D)
        void *ctx = NULL;
        char *mode = HTTP_G->etag.mode;
        
-#if 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);
@@ -81,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;
        
-#if 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);
@@ -108,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;
-#if 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);