comparison src/event/ngx_event_openssl.c @ 60:df7d3fff122b NGINX_0_1_30

nginx 0.1.30 *) Bugfix: the worker process may got caught in an endless loop if the SSI was used. *) Bugfix: the response encrypted by SSL may not transferred complete. *) Bugfix: if the length of the response part received at once from proxied or FastCGI server was equal to 500, then nginx returns the 500 response code; in proxy mode the bug appeared in 0.1.29 only. *) Bugfix: nginx did not consider the directives with 8 or 9 parameters as invalid. *) Feature: the "return" directive can return the 204 response code. *) Feature: the "ignore_invalid_headers" directive.
author Igor Sysoev <http://sysoev.ru>
date Sat, 14 May 2005 00:00:00 +0400
parents b55cbf18157e
children 0790a8599248
comparison
equal deleted inserted replaced
59:4cb463ba8cce 60:df7d3fff122b
359 359
360 if (n == NGX_ERROR) { 360 if (n == NGX_ERROR) {
361 return NGX_CHAIN_ERROR; 361 return NGX_CHAIN_ERROR;
362 } 362 }
363 363
364 if (n < 0) { 364 if (n == NGX_AGAIN) {
365 n = 0; 365 c->buffered = 1;
366 return in;
366 } 367 }
367 368
368 buf->pos += n; 369 buf->pos += n;
369 send += n; 370 send += n;
370 c->sent += n; 371 c->sent += n;