comparison src/http/ngx_http_request.h @ 9187:dacad3a9c7b8

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).
author Vladimir Khomutov <vl@wbsrv.ru>
date Tue, 28 Nov 2023 12:57:14 +0300
parents 4939fd04737f
children 0de20f43db25
comparison
equal deleted inserted replaced
9186:f366007dd23a 9187:dacad3a9c7b8
595 u_char *method_end; 595 u_char *method_end;
596 u_char *schema_start; 596 u_char *schema_start;
597 u_char *schema_end; 597 u_char *schema_end;
598 u_char *host_start; 598 u_char *host_start;
599 u_char *host_end; 599 u_char *host_end;
600 u_char *port_start;
601 u_char *port_end;
602 600
603 unsigned http_minor:16; 601 unsigned http_minor:16;
604 unsigned http_major:16; 602 unsigned http_major:16;
605 }; 603 };
606 604