comparison src/http/ngx_http.h @ 520:d41628eb4d0a NGINX_0_8_12

nginx 0.8.12 *) Feature: the "sendfile" parameter in the "aio" directive on FreeBSD. *) Bugfix: in try_files; the bug had appeared in 0.8.11. *) Bugfix: in memcached; the bug had appeared in 0.8.11.
author Igor Sysoev <http://sysoev.ru>
date Mon, 31 Aug 2009 00:00:00 +0400
parents 829f9a66a659
children 1dcf6adad484
comparison
equal deleted inserted replaced
519:1fd1b769cd78 520:d41628eb4d0a
82 82
83 ngx_int_t ngx_http_find_server_conf(ngx_http_request_t *r); 83 ngx_int_t ngx_http_find_server_conf(ngx_http_request_t *r);
84 void ngx_http_update_location_config(ngx_http_request_t *r); 84 void ngx_http_update_location_config(ngx_http_request_t *r);
85 void ngx_http_handler(ngx_http_request_t *r); 85 void ngx_http_handler(ngx_http_request_t *r);
86 void ngx_http_run_posted_requests(ngx_connection_t *c); 86 void ngx_http_run_posted_requests(ngx_connection_t *c);
87 ngx_int_t ngx_http_post_request(ngx_http_request_t *r); 87 ngx_int_t ngx_http_post_request(ngx_http_request_t *r,
88 ngx_http_posted_request_t *pr);
88 void ngx_http_finalize_request(ngx_http_request_t *r, ngx_int_t rc); 89 void ngx_http_finalize_request(ngx_http_request_t *r, ngx_int_t rc);
89 90
90 void ngx_http_empty_handler(ngx_event_t *wev); 91 void ngx_http_empty_handler(ngx_event_t *wev);
91 void ngx_http_request_empty_handler(ngx_http_request_t *r); 92 void ngx_http_request_empty_handler(ngx_http_request_t *r);
93
94
95 #define ngx_http_ephemeral(r) (ngx_http_ephemeral_t *) (&r->uri_start)
92 96
93 97
94 #define NGX_HTTP_LAST 1 98 #define NGX_HTTP_LAST 1
95 #define NGX_HTTP_FLUSH 2 99 #define NGX_HTTP_FLUSH 2
96 100