comparison src/http/ngx_http_cache.c @ 180:2d143372a1ee

nginx-0.0.1-2003-11-12-01:16:11 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 11 Nov 2003 22:16:11 +0000
parents c0552e5ab567
children 1bf718ce0dde
comparison
equal deleted inserted replaced
179:9f3a78b06c48 180:2d143372a1ee
2 #include <ngx_config.h> 2 #include <ngx_config.h>
3 #include <ngx_core.h> 3 #include <ngx_core.h>
4 #include <ngx_http.h> 4 #include <ngx_http.h>
5 5
6 #include <md5.h> 6 #include <md5.h>
7
8 /* STUB */
9 #if (WIN32)
10 #define MD5Init MD5_Init
11 #define MD5Update MD5_Update
12 #define MD5Final MD5_Final
13 #endif
7 14
8 15
9 int ngx_http_cache_get_file(ngx_http_request_t *r, ngx_http_cache_ctx_t *ctx) 16 int ngx_http_cache_get_file(ngx_http_request_t *r, ngx_http_cache_ctx_t *ctx)
10 { 17 {
11 MD5_CTX md5; 18 MD5_CTX md5;