]> git.kaiwu.me - nginx.git/commitdiff
HTTP: removed unused r->port_start and r->port_end.
authorVladimir Khomutov <vl@wbsrv.ru>
Tue, 28 Nov 2023 09:57:14 +0000 (12:57 +0300)
committerVladimir Khomutov <vl@wbsrv.ru>
Tue, 28 Nov 2023 09:57:14 +0000 (12:57 +0300)
Neither r->port_start nor r->port_end were ever used.

The r->port_end is set by the parser, though it was never used by
the following code (and was never usable, since not copied by the
ngx_http_alloc_large_header_buffer() without r->port_start set).

src/http/ngx_http_parse.c
src/http/ngx_http_request.c
src/http/ngx_http_request.h

index d4f2dae8720b264551bd5e4db2be3a37d949647b..f7e50388f9939498571ec5b697b035f568d3b205 100644 (file)
@@ -451,19 +451,16 @@ ngx_http_parse_request_line(ngx_http_request_t *r, ngx_buf_t *b)
 
             switch (ch) {
             case '/':
-                r->port_end = p;
                 r->uri_start = p;
                 state = sw_after_slash_in_uri;
                 break;
             case '?':
-                r->port_end = p;
                 r->uri_start = p;
                 r->args_start = p + 1;
                 r->empty_path_in_uri = 1;
                 state = sw_uri;
                 break;
             case ' ':
-                r->port_end = p;
                 /*
                  * use single "/" from request line to preserve pointers,
                  * if request line will be copied to large client buffer
index bd2be5eacd684fe65bdb9ba95298a91af23199d9..058d502866760e3cd7f876a21bbd41e80393114f 100644 (file)
@@ -1735,11 +1735,6 @@ ngx_http_alloc_large_header_buffer(ngx_http_request_t *r,
             }
         }
 
-        if (r->port_start) {
-            r->port_start = new + (r->port_start - old);
-            r->port_end = new + (r->port_end - old);
-        }
-
         if (r->uri_ext) {
             r->uri_ext = new + (r->uri_ext - old);
         }
index cc3b7c0acba8c508fd7a77805654d66bc0dae7b9..48b052bbc56d769051ff94eba1a630975164331b 100644 (file)
@@ -597,8 +597,6 @@ struct ngx_http_request_s {
     u_char                           *schema_end;
     u_char                           *host_start;
     u_char                           *host_end;
-    u_char                           *port_start;
-    u_char                           *port_end;
 
     unsigned                          http_minor:16;
     unsigned                          http_major:16;