comparison src/http/ngx_http_request.c @ 4594:7d0561b2e0fb

Fixed log->action after ssl handshake.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 16 Apr 2012 13:05:20 +0000
parents 834049edae24
children c42553296af1
comparison
equal deleted inserted replaced
4593:834049edae24 4594:7d0561b2e0fb
610 * Opera and recent Mozilla send the alert. 610 * Opera and recent Mozilla send the alert.
611 */ 611 */
612 612
613 c->ssl->no_wait_shutdown = 1; 613 c->ssl->no_wait_shutdown = 1;
614 614
615 c->log->action = "reading client request line";
616
615 c->read->handler = ngx_http_process_request_line; 617 c->read->handler = ngx_http_process_request_line;
616 /* STUB: epoll edge */ c->write->handler = ngx_http_empty_handler; 618 /* STUB: epoll edge */ c->write->handler = ngx_http_empty_handler;
617 619
618 ngx_http_process_request_line(c->read); 620 ngx_http_process_request_line(c->read);
619 621