comparison src/http/ngx_http.h @ 383:c05876036128

nginx-0.0.7-2004-07-08-19:17:47 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 08 Jul 2004 15:17:47 +0000
parents 2e3cbc1bbe3c
children d1222d46b3f9
comparison
equal deleted inserted replaced
382:449c4885dcd1 383:c05876036128
8 8
9 typedef struct ngx_http_request_s ngx_http_request_t; 9 typedef struct ngx_http_request_s ngx_http_request_t;
10 typedef struct ngx_http_cleanup_s ngx_http_cleanup_t; 10 typedef struct ngx_http_cleanup_s ngx_http_cleanup_t;
11 11
12 #if (NGX_HTTP_CACHE) 12 #if (NGX_HTTP_CACHE)
13 #include <ngx_http_cache.h>
13 #endif 14 #endif
15 /* STUB */
14 #include <ngx_http_cache.h> 16 #include <ngx_http_cache.h>
15 17
16 #include <ngx_http_request.h> 18 #include <ngx_http_request.h>
17 #include <ngx_http_config.h> 19 #include <ngx_http_config.h>
18 #include <ngx_http_busy_lock.h> 20 #include <ngx_http_busy_lock.h>
19 #include <ngx_http_log_handler.h> 21 #include <ngx_http_log_handler.h>
20 #include <ngx_http_core_module.h> 22 #include <ngx_http_core_module.h>
23
24 #if (NGX_HTTP_SSL)
25 #include <ngx_http_ssl_filter.h>
26 #endif
21 27
22 28
23 typedef struct { 29 typedef struct {
24 u_int connection; 30 u_int connection;
25 31
46 } while (0) 52 } while (0)
47 53
48 #define ngx_http_delete_ctx(r, module) \ 54 #define ngx_http_delete_ctx(r, module) \
49 r->ctx[module.ctx_index] = NULL; 55 r->ctx[module.ctx_index] = NULL;
50 56
51
52 /* STUB */
53 #define NGX_INDEX "index.html"
54
55
56 /* STUB */
57 int ngx_http_init(ngx_pool_t *pool, ngx_log_t *log);
58 /**/
59 57
60 void ngx_http_init_connection(ngx_connection_t *c); 58 void ngx_http_init_connection(ngx_connection_t *c);
61 59
62 ngx_int_t ngx_http_parse_request_line(ngx_http_request_t *r); 60 ngx_int_t ngx_http_parse_request_line(ngx_http_request_t *r);
63 ngx_int_t ngx_http_parse_complex_uri(ngx_http_request_t *r); 61 ngx_int_t ngx_http_parse_complex_uri(ngx_http_request_t *r);