diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2003-04-08 15:40:10 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2003-04-08 15:40:10 +0000 |
| commit | e2a3154f0e3020e1f21f5a88b29daf8cc26e0dc5 (patch) | |
| tree | 6198fc644d2efe9d10bab8b87004a70324d6cf5d /src/http/ngx_http.h | |
| parent | 3f76ec190a3bd398c229deb0b4f298b9637a3129 (diff) | |
| download | nginx-e2a3154f0e3020e1f21f5a88b29daf8cc26e0dc5.tar.gz nginx-e2a3154f0e3020e1f21f5a88b29daf8cc26e0dc5.tar.bz2 | |
nginx-0.0.1-2003-04-08-19:40:10 import
Diffstat (limited to 'src/http/ngx_http.h')
| -rw-r--r-- | src/http/ngx_http.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/http/ngx_http.h b/src/http/ngx_http.h index ce8f2b09d..031d99064 100644 --- a/src/http/ngx_http.h +++ b/src/http/ngx_http.h @@ -147,6 +147,7 @@ struct ngx_http_request_s { ngx_str_t path; int path_err; + unsigned proxy:1; unsigned pipeline:1; unsigned keepalive:1; unsigned lingering_close:1; @@ -250,6 +251,9 @@ extern int ngx_http_url_in_error_log; extern ngx_array_t ngx_http_translate_handlers; extern ngx_array_t ngx_http_index_handlers; +extern int (*ngx_http_top_header_filter) (ngx_http_request_t *r); +extern int (*ngx_http_top_body_filter) (ngx_http_request_t *r, ngx_chain_t *ch); + /* STUB */ int ngx_http_log_handler(ngx_http_request_t *r); |
