diff options
Diffstat (limited to '')
| -rw-r--r-- | src/http/ngx_http.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/http/ngx_http.h b/src/http/ngx_http.h index 33d6f3414..2a4ce03ca 100644 --- a/src/http/ngx_http.h +++ b/src/http/ngx_http.h @@ -10,7 +10,9 @@ typedef struct ngx_http_request_s ngx_http_request_t; typedef struct ngx_http_cleanup_s ngx_http_cleanup_t; #if (NGX_HTTP_CACHE) +#include <ngx_http_cache.h> #endif +/* STUB */ #include <ngx_http_cache.h> #include <ngx_http_request.h> @@ -19,6 +21,10 @@ typedef struct ngx_http_cleanup_s ngx_http_cleanup_t; #include <ngx_http_log_handler.h> #include <ngx_http_core_module.h> +#if (NGX_HTTP_SSL) +#include <ngx_http_ssl_filter.h> +#endif + typedef struct { u_int connection; @@ -49,14 +55,6 @@ typedef struct { r->ctx[module.ctx_index] = NULL; -/* STUB */ -#define NGX_INDEX "index.html" - - -/* STUB */ -int ngx_http_init(ngx_pool_t *pool, ngx_log_t *log); -/**/ - void ngx_http_init_connection(ngx_connection_t *c); ngx_int_t ngx_http_parse_request_line(ngx_http_request_t *r); |
