comparison src/http/ngx_http_request.c @ 386:fa72605e7089

nginx-0.0.7-2004-07-12-01:03:47 import
author Igor Sysoev <igor@sysoev.ru>
date Sun, 11 Jul 2004 21:03:47 +0000
parents 79050a10aacb
children 80e72c428b39
comparison
equal deleted inserted replaced
385:79050a10aacb 386:fa72605e7089
813 813
814 if (!rev->ready) { 814 if (!rev->ready) {
815 return NGX_AGAIN; 815 return NGX_AGAIN;
816 } 816 }
817 817
818 #if 0 818 #if 1
819 ngx_http_ssl_read(r); 819 n = ngx_http_ssl_read(r, r->header_in->last,
820 r->header_in->end - r->header_in->last);
820 #else 821 #else
821 n = ngx_recv(r->connection, r->header_in->last, 822 n = ngx_recv(r->connection, r->header_in->last,
822 r->header_in->end - r->header_in->last); 823 r->header_in->end - r->header_in->last);
823 #endif 824 #endif
824 825