From c8c7beb96f61e2251abbc345357116131cf91c22 Mon Sep 17 00:00:00 2001 From: Roman Arutyunyan Date: Mon, 29 Sep 2025 20:47:27 +0400 Subject: Added $request_port and $is_request_port variables. The $request_port variable contains the port passed by the client in the request line (for HTTP/1.x) or ":authority" pseudo-header (for HTTP/2 and HTTP/3). If the request line contains no host, or ":authority" is missing, then $request_port is taken from the "Host" header, similar to the $host variable. The $is_request_port variable contains ":" if $request_port is non-empty, and is empty otherwise. --- src/http/v3/ngx_http_v3_request.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/http/v3') diff --git a/src/http/v3/ngx_http_v3_request.c b/src/http/v3/ngx_http_v3_request.c index 844a4000a..77c55bfee 100644 --- a/src/http/v3/ngx_http_v3_request.c +++ b/src/http/v3/ngx_http_v3_request.c @@ -979,6 +979,16 @@ ngx_http_v3_init_pseudo_headers(ngx_http_request_t *r) } r->headers_in.server = host; + + p = ngx_strlchr(r->host_start + host.len, r->host_end, ':'); + + if (p) { + rc = ngx_atoi(p + 1, r->host_end - p - 1); + + if (rc > 0 && rc < 65536) { + r->port = rc; + } + } } if (ngx_list_init(&r->headers_in.headers, r->pool, 20, -- cgit