From 0db94ba96a00ebfc4a3c55af8eaaf20f971a7c4c Mon Sep 17 00:00:00 2001 From: Vladimir Khomutov Date: Tue, 28 Nov 2023 12:57:14 +0300 Subject: HTTP: removed unused r->port_start and r->port_end. 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_request.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/http/ngx_http_request.h') diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index cc3b7c0ac..48b052bbc 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -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; -- cgit