Skip to content

Commit 71c6823

Browse files
fix_headers() now initializes Host header when needed
RFC9112 §3.2-5 says that Host is mandatory, but can be an empty value. resolves issue #2232.
1 parent a9e7e6b commit 71c6823

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

lib/Mojo/Message/Request.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ sub fix_headers {
7373

7474
# Host
7575
my $url = $self->url;
76-
$headers->host($url->host_port) unless $headers->host;
76+
$headers->host($url->host_port // '') unless defined $headers->host;
7777

7878
# Basic authentication
7979
if ((my $info = $url->userinfo) && !$headers->authorization) {

t/mojo/request.t

+5
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,11 @@ subtest 'Parse full HTTP 1.0 request (no scheme and empty elements in path)' =>
475475
is $req->url, '//foo/bar//baz.html?foo=13', 'right URL';
476476
is $req->headers->content_type, 'text/plain', 'right "Content-Type" value';
477477
is $req->headers->content_length, 27, 'right "Content-Length" value';
478+
is $req->headers->host, undef, '"Host" value is not defined';
479+
480+
$req->fix_headers;
481+
is $req->url->host, undef, 'still no url host';
482+
is $req->headers->host, '', '"Host" value is fixed';
478483
};
479484

480485
subtest 'Parse full HTTP 1.0 request (behind reverse proxy)' => sub {

0 commit comments

Comments
 (0)