comparison src/core/ngx_buf.h @ 500:ed3d382670c7 NGINX_0_7_62

nginx 0.7.62 *) Security: a segmentation fault might occur in worker process while specially crafted request handling. Thanks to Chris Ries. *) Feature: the $upstream_cache_status variable. *) Bugfix: an expired cached response might stick in the "UPDATING" state. *) Bugfix: a segmentation fault might occur in worker process, if error_log was set to info or debug level. Thanks to Sergey Bochenkov. *) Bugfix: in handling FastCGI headers split in records. *) Bugfix: XSLT filter may fail with message "not well formed XML document" for valid XML document. Thanks to Kuramoto Eiji. *) Bugfix: now in MacOSX, Cygwin, and nginx/Windows locations given by a regular expression are always tested in case insensitive mode. *) Bugfix: now nginx/Windows ignores trailing dots in URI. Thanks to Hugo Leisink. *) Bugfix: name of file specified in --conf-path was not honored during installation; the bug had appeared in 0.6.6. Thanks to Maxim Dounin. *) Bugfix: a 500 error code was returned for invalid login/password while HTTP Basic authentication on Windows.
author Igor Sysoev <http://sysoev.ru>
date Mon, 14 Sep 2009 00:00:00 +0400
parents fd759445d8a8
children
comparison
equal deleted inserted replaced
499:f2c782e5161f 500:ed3d382670c7
73 ngx_buf_t *buf; 73 ngx_buf_t *buf;
74 ngx_chain_t *in; 74 ngx_chain_t *in;
75 ngx_chain_t *free; 75 ngx_chain_t *free;
76 ngx_chain_t *busy; 76 ngx_chain_t *busy;
77 77
78 unsigned sendfile; 78 unsigned sendfile:1;
79 unsigned directio; 79 unsigned directio:1;
80 #if (NGX_HAVE_ALIGNED_DIRECTIO) 80 #if (NGX_HAVE_ALIGNED_DIRECTIO)
81 unsigned unaligned; 81 unsigned unaligned:1;
82 #endif 82 #endif
83 unsigned need_in_memory; 83 unsigned need_in_memory:1;
84 unsigned need_in_temp; 84 unsigned need_in_temp:1;
85 85
86 ngx_pool_t *pool; 86 ngx_pool_t *pool;
87 ngx_int_t allocated; 87 ngx_int_t allocated;
88 ngx_bufs_t bufs; 88 ngx_bufs_t bufs;
89 ngx_buf_tag_t tag; 89 ngx_buf_tag_t tag;