comparison src/http/ngx_http.h @ 435:e7dbea1ee115 NGINX_0_7_25

nginx 0.7.25 *) Change: in subrequest processing. *) Change: now POSTs without "Content-Length" header line are allowed. *) Bugfix: now the "limit_req" and "limit_conn" directives log a prohibition reason. *) Bugfix: in the "delete" parameter of the "geo" directive.
author Igor Sysoev <http://sysoev.ru>
date Mon, 08 Dec 2008 00:00:00 +0300
parents b4f69f2ef02c
children fd759445d8a8
comparison
equal deleted inserted replaced
434:f64d9e30046c 435:e7dbea1ee115
78 ngx_str_t *name, ngx_str_t *value); 78 ngx_str_t *name, ngx_str_t *value);
79 79
80 ngx_int_t ngx_http_find_server_conf(ngx_http_request_t *r); 80 ngx_int_t ngx_http_find_server_conf(ngx_http_request_t *r);
81 void ngx_http_update_location_config(ngx_http_request_t *r); 81 void ngx_http_update_location_config(ngx_http_request_t *r);
82 void ngx_http_handler(ngx_http_request_t *r); 82 void ngx_http_handler(ngx_http_request_t *r);
83 void ngx_http_run_posted_requests(ngx_connection_t *c);
84 ngx_int_t ngx_http_post_request(ngx_http_request_t *r);
83 void ngx_http_finalize_request(ngx_http_request_t *r, ngx_int_t rc); 85 void ngx_http_finalize_request(ngx_http_request_t *r, ngx_int_t rc);
84 86
85 void ngx_http_empty_handler(ngx_event_t *wev); 87 void ngx_http_empty_handler(ngx_event_t *wev);
86 void ngx_http_request_empty_handler(ngx_http_request_t *r); 88 void ngx_http_request_empty_handler(ngx_http_request_t *r);
89
87 90
88 #define NGX_HTTP_LAST 1 91 #define NGX_HTTP_LAST 1
89 #define NGX_HTTP_FLUSH 2 92 #define NGX_HTTP_FLUSH 2
90 93
91 ngx_int_t ngx_http_send_special(ngx_http_request_t *r, ngx_uint_t flags); 94 ngx_int_t ngx_http_send_special(ngx_http_request_t *r, ngx_uint_t flags);