comparison src/http/ngx_http_event.c @ 137:2a615b036870

nginx-0.0.1-2003-10-03-19:50:53 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 03 Oct 2003 15:50:53 +0000
parents e29909bd9b8a
children
comparison
equal deleted inserted replaced
136:da00cde00e8a 137:2a615b036870
290 290
291 if (n == NGX_AGAIN || n == NGX_ERROR) { 291 if (n == NGX_AGAIN || n == NGX_ERROR) {
292 return; 292 return;
293 } 293 }
294 294
295 rc = ngx_parse_http_request_line(r); 295 rc = ngx_http_parse_request_line(r);
296 296
297 if (rc == NGX_OK) { 297 if (rc == NGX_OK) {
298 298
299 /* the request line has been parsed successfully */ 299 /* the request line has been parsed successfully */
300 300
536 if (n == NGX_AGAIN || n == NGX_ERROR) { 536 if (n == NGX_AGAIN || n == NGX_ERROR) {
537 return; 537 return;
538 } 538 }
539 } 539 }
540 540
541 rc = ngx_parse_http_header_line(r, r->header_in); 541 rc = ngx_http_parse_header_line(r, r->header_in);
542 542
543 if (rc == NGX_OK) { 543 if (rc == NGX_OK) {
544 544
545 /* a header line has been parsed successfully */ 545 /* a header line has been parsed successfully */
546 546