diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-02-10 15:05:05 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-02-10 15:05:05 +0000 |
commit | 2c33648e52a6f355b426e617dd3fc577961c5193 (patch) | |
tree | 5ded7f244233d44be18fb0e82475a8dffb9a11fa /src/http/ngx_http_core_module.h | |
parent | 09f6cd5fa930eb22ace086ecb71571ffb5071080 (diff) | |
download | nginx-2c33648e52a6f355b426e617dd3fc577961c5193.tar.gz nginx-2c33648e52a6f355b426e617dd3fc577961c5193.zip |
if_modified_since off
Diffstat (limited to 'src/http/ngx_http_core_module.h')
-rw-r--r-- | src/http/ngx_http_core_module.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/http/ngx_http_core_module.h b/src/http/ngx_http_core_module.h index 46acb2b4f..21a53552e 100644 --- a/src/http/ngx_http_core_module.h +++ b/src/http/ngx_http_core_module.h @@ -28,6 +28,11 @@ #define NGX_HTTP_SATISFY_ANY 1 +#define NGX_HTTP_IMS_OFF 0 +#define NGX_HTTP_IMS_EXACT 1 +#define NGX_HTTP_IMS_BEFORE 2 + + typedef struct ngx_http_location_tree_node_s ngx_http_location_tree_node_t; typedef struct ngx_http_core_loc_conf_s ngx_http_core_loc_conf_t; |