comparison src/http/ngx_http_event.c @ 92:19cc647ecd91

nginx-0.0.1-2003-05-20-19:37:55 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 20 May 2003 15:37:55 +0000
parents 637625a2acdb
children 738fe44c70d5
comparison
equal deleted inserted replaced
91:637625a2acdb 92:19cc647ecd91
693 } 693 }
694 694
695 695
696 void ngx_http_finalize_request(ngx_http_request_t *r, int error) 696 void ngx_http_finalize_request(ngx_http_request_t *r, int error)
697 { 697 {
698 int rc, event; 698 int rc;
699 ngx_msec_t timeout;
700 ngx_event_t *rev, *wev; 699 ngx_event_t *rev, *wev;
701 700
702 rc = error; 701 rc = error;
703 702
704 if (rc >= NGX_HTTP_SPECIAL_RESPONSE) { 703 if (rc >= NGX_HTTP_SPECIAL_RESPONSE) {
792 791
793 792
794 static void ngx_http_writer(ngx_event_t *wev) 793 static void ngx_http_writer(ngx_event_t *wev)
795 { 794 {
796 int rc; 795 int rc;
797 ngx_msec_t timeout;
798 ngx_event_t *rev; 796 ngx_event_t *rev;
799 ngx_connection_t *c; 797 ngx_connection_t *c;
800 ngx_http_request_t *r; 798 ngx_http_request_t *r;
801 ngx_http_core_loc_conf_t *lcf; 799 ngx_http_core_loc_conf_t *lcf;
802 800