comparison src/event/ngx_event_openssl.c @ 62:0790a8599248 NGINX_0_1_31

nginx 0.1.31 *) Bugfix: the response encrypted by SSL may not transferred complete. *) Bugfix: errors while processing FastCGI response by SSI. *) Bugfix: errors while using SSI and gzipping. *) Bugfix: the redirect with the 301 code was transferred without response body; bug appeared in 0.1.30.
author Igor Sysoev <http://sysoev.ru>
date Mon, 16 May 2005 00:00:00 +0400
parents df7d3fff122b
children e916a291e9aa
comparison
equal deleted inserted replaced
61:345d4a254bfb 62:0790a8599248
286 286
287 if (n == NGX_ERROR) { 287 if (n == NGX_ERROR) {
288 return NGX_CHAIN_ERROR; 288 return NGX_CHAIN_ERROR;
289 } 289 }
290 290
291 if (n < 0) { 291 if (n == NGX_AGAIN) {
292 n = 0; 292 c->buffered = 1;
293 return in;
293 } 294 }
294 295
295 in->buf->pos += n; 296 in->buf->pos += n;
296 297
297 return in; 298 return in;