diff src/http/ngx_http_parse.c @ 8679:e1eb7f4ca9f1 quic

HTTP/3: refactored request parser. The change reduces diff to the default branch for src/http/ngx_http_request.c and src/http/ngx_http_parse.c.
author Roman Arutyunyan <arut@nginx.com>
date Fri, 22 Jan 2021 16:34:06 +0300
parents f61d347158d0
children 6674a50cbb6c
line wrap: on
line diff
--- a/src/http/ngx_http_parse.c
+++ b/src/http/ngx_http_parse.c
@@ -143,7 +143,6 @@ ngx_http_parse_request_line(ngx_http_req
 
         /* HTTP methods: GET, HEAD, POST */
         case sw_start:
-            r->parse_start = p;
             r->request_start = p;
 
             if (ch == CR || ch == LF) {
@@ -896,7 +895,6 @@ ngx_http_parse_header_line(ngx_http_requ
 
         /* first char */
         case sw_start:
-            r->parse_start = p;
             r->header_name_start = p;
             r->invalid_header = 0;