X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_cache_api.h;h=14ae720d0886ce9829f430a744db8d2dc3fc554f;hp=4f067f5a0c72c5fcb8936faa3e80f3f3a52b95f8;hb=2e1cd7f9942bb07d7c3a2efb79090215fc1406d6;hpb=61f165688d2cc39424678829a145c8cbab51d1af diff --git a/php_http_cache_api.h b/php_http_cache_api.h index 4f067f5..14ae720 100644 --- a/php_http_cache_api.h +++ b/php_http_cache_api.h @@ -22,6 +22,7 @@ #include "ext/standard/md5.h" #include "ext/standard/sha1.h" +#include "ext/standard/crc32.h" #include "php_http_std_defs.h" #include "php_http.h" @@ -34,10 +35,13 @@ ZEND_EXTERN_MODULE_GLOBALS(http); +#define http_cache_global_init() _http_cache_global_init(INIT_FUNC_ARGS_PASSTHRU) +extern STATUS _http_cache_global_init(INIT_FUNC_ARGS); + typedef enum { + HTTP_ETAG_CRC32 = -3, HTTP_ETAG_MD5 = -2, HTTP_ETAG_SHA1 = -1, - HTTP_ETAG_MHASH = 0, } http_etag_mode; #ifdef HTTP_HAVE_MHASH @@ -73,6 +77,11 @@ static inline void *_http_etag_init(TSRMLS_D) switch (mode) { + case HTTP_ETAG_CRC32: + ctx = emalloc(sizeof(unsigned int)); + memset(ctx, 1, sizeof(unsigned int)); + break; + case HTTP_ETAG_SHA1: PHP_SHA1Init(ctx = emalloc(sizeof(PHP_SHA1_CTX))); break; @@ -105,6 +114,12 @@ static inline char *_http_etag_finish(void *ctx TSRMLS_DC) switch (mode) { + case HTTP_ETAG_CRC32: + *((unsigned int *) ctx) = ~*((unsigned int *) ctx); + etag = http_etag_digest((const unsigned char *) ctx, sizeof(unsigned int)); + efree(ctx); + break; + case HTTP_ETAG_SHA1: PHP_SHA1Final(digest, ctx); etag = http_etag_digest(digest, 20); @@ -139,6 +154,17 @@ static inline void _http_etag_update(void *ctx, const char *data_ptr, size_t dat { switch (INI_INT("http.etag_mode")) { + case HTTP_ETAG_CRC32: + { + unsigned int i, c = *((unsigned int *) ctx); + + for (i = 0; i < data_len; ++i) { + c = CRC32(c, data_ptr[i]); + } + *((unsigned int *)ctx) = c; + } + break; + case HTTP_ETAG_SHA1: PHP_SHA1Update(ctx, (const unsigned char *) data_ptr, data_len); break;