comparison src/http/ngx_http_event.c @ 39:83fa61cd3d2f

nginx-0.0.1-2002-12-24-20:30:59 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 24 Dec 2002 17:30:59 +0000
parents 2ffaa35fba42
children 59e7c7f30d49
comparison
equal deleted inserted replaced
38:2ffaa35fba42 39:83fa61cd3d2f
547 547
548 ngx_log_debug(ev->log, "http writer done"); 548 ngx_log_debug(ev->log, "http writer done");
549 549
550 if (!r->keepalive) { 550 if (!r->keepalive) {
551 if (r->lingering_close) { 551 if (r->lingering_close) {
552 ngx_http_set_lingering_close(r); 552 return ngx_http_set_lingering_close(r);
553 553
554 } else { 554 } else {
555 return ngx_http_close_request(r); 555 return ngx_http_close_request(r);
556 } 556 }
557 } 557 }