comparison src/http/ngx_http_request.c @ 651:39b7d7b33c91 release-0.3.47

nginx-0.3.47-RELEASE import *) Feature: the "upstream" directive. *) Change: now the "\" escape symbol in the "\"" and "\'" pairs in the SSI command is always removed.
author Igor Sysoev <igor@sysoev.ru>
date Tue, 23 May 2006 14:54:58 +0000
parents 1e720b0be7ec
children 7cbef16c71a1
comparison
equal deleted inserted replaced
650:d865681780b6 651:39b7d7b33c91
664 664
665 rev->handler = ngx_http_request_handler; 665 rev->handler = ngx_http_request_handler;
666 c->write->handler = ngx_http_request_handler; 666 c->write->handler = ngx_http_request_handler;
667 r->read_event_handler = ngx_http_block_read; 667 r->read_event_handler = ngx_http_block_read;
668 668
669 r->uri_changes = NGX_HTTP_MAX_URI_CHANGES + 1;
670
669 ngx_http_handler(r); 671 ngx_http_handler(r);
670 672
671 return; 673 return;
672 } 674 }
673 675