diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-12-08 14:23:20 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-12-08 14:23:20 +0000 |
commit | 851cd73f1d1fffd265bff03f5db9470ec7f2842f (patch) | |
tree | 8b37df6fa5cc2ff72799a53532000b52480de34e /src/http/ngx_http.h | |
parent | ba206e147c5fd9932b04ac24d01662d86ba7d6b9 (diff) | |
download | nginx-851cd73f1d1fffd265bff03f5db9470ec7f2842f.tar.gz nginx-851cd73f1d1fffd265bff03f5db9470ec7f2842f.zip |
*) refactor subrequest handling, now they run as separate posted requests
*) now $upstream_addr, $upstream_status, $upstream_response_time can be used
with log_subrequest
Diffstat (limited to 'src/http/ngx_http.h')
-rw-r--r-- | src/http/ngx_http.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/http/ngx_http.h b/src/http/ngx_http.h index 77d80a895..8c07a909c 100644 --- a/src/http/ngx_http.h +++ b/src/http/ngx_http.h @@ -80,11 +80,14 @@ ngx_int_t ngx_http_parse_multi_header_lines(ngx_array_t *headers, ngx_int_t ngx_http_find_server_conf(ngx_http_request_t *r); void ngx_http_update_location_config(ngx_http_request_t *r); void ngx_http_handler(ngx_http_request_t *r); +void ngx_http_run_posted_requests(ngx_connection_t *c); +ngx_int_t ngx_http_post_request(ngx_http_request_t *r); void ngx_http_finalize_request(ngx_http_request_t *r, ngx_int_t rc); void ngx_http_empty_handler(ngx_event_t *wev); void ngx_http_request_empty_handler(ngx_http_request_t *r); + #define NGX_HTTP_LAST 1 #define NGX_HTTP_FLUSH 2 |