diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-05-27 12:18:54 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-05-27 12:18:54 +0000 |
commit | 6253ca1b62c24bbac8c380d4ae64353b671ad7ef (patch) | |
tree | cccc0130b6fb065ff235750d23b817e890bd5e57 /src/http/modules/ngx_http_index_handler.h | |
parent | 187fcd82410e0f9022b0090a27b040eb1211c3f5 (diff) | |
download | nginx-6253ca1b62c24bbac8c380d4ae64353b671ad7ef.tar.gz nginx-6253ca1b62c24bbac8c380d4ae64353b671ad7ef.zip |
nginx-0.0.1-2003-05-27-16:18:54 import
Diffstat (limited to 'src/http/modules/ngx_http_index_handler.h')
-rw-r--r-- | src/http/modules/ngx_http_index_handler.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/http/modules/ngx_http_index_handler.h b/src/http/modules/ngx_http_index_handler.h index 3dd6bd82c..3d2f6f00d 100644 --- a/src/http/modules/ngx_http_index_handler.h +++ b/src/http/modules/ngx_http_index_handler.h @@ -3,16 +3,16 @@ #include <ngx_config.h> -#include <ngx_array.h> +#include <ngx_core.h> #include <ngx_http.h> -#define NGX_HTTP_INDEX "index.html" +#define NGX_HTTP_DEFAULT_INDEX "index.html" typedef struct { - ngx_array_t *indices; - size_t max_index_len; + ngx_array_t indices; + size_t max_index_len; } ngx_http_index_conf_t; |