comparison src/http/ngx_http_request.h @ 296:2ceaee987f37 NGINX_0_5_18

nginx 0.5.18 *) Feature: the ngx_http_sub_filter_module. *) Feature: the "$upstream_http_..." variables. *) Feature: now the $upstream_status and $upstream_response_time variables keep data about all upstreams before X-Accel-Redirect. *) Bugfix: a segmentation fault occurred in master process after first reconfiguration and receiving any signal if nginx was built with ngx_http_perl_module and perl did not support multiplicity; bug appeared in 0.5.9. *) Bugfix: if perl did not support multiplicity, then after reconfiguration perl code did not work; bug appeared in 0.3.38.
author Igor Sysoev <http://sysoev.ru>
date Thu, 19 Apr 2007 00:00:00 +0400
parents 27d9d1f26b38
children 30862655219e
comparison
equal deleted inserted replaced
295:65b7ac8795e3 296:2ceaee987f37
122 122
123 #define NGX_HTTP_LOWLEVEL_BUFFERED 0xf0 123 #define NGX_HTTP_LOWLEVEL_BUFFERED 0xf0
124 #define NGX_HTTP_WRITE_BUFFERED 0x10 124 #define NGX_HTTP_WRITE_BUFFERED 0x10
125 #define NGX_HTTP_GZIP_BUFFERED 0x20 125 #define NGX_HTTP_GZIP_BUFFERED 0x20
126 #define NGX_HTTP_SSI_BUFFERED 0x01 126 #define NGX_HTTP_SSI_BUFFERED 0x01
127 #define NGX_HTTP_COPY_BUFFERED 0x02 127 #define NGX_HTTP_SUB_BUFFERED 0x02
128 #define NGX_HTTP_COPY_BUFFERED 0x04
128 129
129 130
130 typedef enum { 131 typedef enum {
131 NGX_HTTP_INITING_REQUEST_STATE = 0, 132 NGX_HTTP_INITING_REQUEST_STATE = 0,
132 NGX_HTTP_READING_REQUEST_STATE, 133 NGX_HTTP_READING_REQUEST_STATE,
327 ngx_http_event_handler_pt write_event_handler; 328 ngx_http_event_handler_pt write_event_handler;
328 329
329 ngx_http_cache_t *cache; 330 ngx_http_cache_t *cache;
330 331
331 ngx_http_upstream_t *upstream; 332 ngx_http_upstream_t *upstream;
333 ngx_array_t *upstream_states;
334 /* of ngx_http_upstream_state_t */
332 335
333 ngx_pool_t *pool; 336 ngx_pool_t *pool;
334 ngx_buf_t *header_in; 337 ngx_buf_t *header_in;
335 338
336 ngx_http_headers_in_t headers_in; 339 ngx_http_headers_in_t headers_in;