comparison src/http/ngx_http_write_filter.c @ 38:2879cd3a40cb NGINX_0_1_19

nginx 0.1.19 *) Bugfix: now, if request contains the zero, then the 404 error is returned for the local requests. *) Bugfix: nginx could not be built on NetBSD 2.0. *) Bugfix: the timeout may occur while reading of the the client request body via SSL connections.
author Igor Sysoev <http://sysoev.ru>
date Wed, 16 Feb 2005 00:00:00 +0300
parents da8c190bdaba
children 6cfc63e68377
comparison
equal deleted inserted replaced
37:3376a7dea5d6 38:2879cd3a40cb
92 cl->buf->file, 92 cl->buf->file,
93 cl->buf->file_pos, 93 cl->buf->file_pos,
94 cl->buf->file_last); 94 cl->buf->file_last);
95 95
96 ngx_debug_point(); 96 ngx_debug_point();
97 return NGX_ERROR;
97 } 98 }
98 #endif 99 #endif
99 100
100 size += ngx_buf_size(cl->buf); 101 size += ngx_buf_size(cl->buf);
101 102
142 cl->buf->file, 143 cl->buf->file,
143 cl->buf->file_pos, 144 cl->buf->file_pos,
144 cl->buf->file_last); 145 cl->buf->file_last);
145 146
146 ngx_debug_point(); 147 ngx_debug_point();
148 return NGX_ERROR;
147 } 149 }
148 #endif 150 #endif
149 151
150 size += ngx_buf_size(cl->buf); 152 size += ngx_buf_size(cl->buf);
151 153