File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ sub fix_headers {
73
73
74
74
# Host
75
75
my $url = $self -> url;
76
- $headers -> host($url -> host_port) unless $headers -> host;
76
+ $headers -> host($url -> host_port // ' ' ) unless defined $headers -> host;
77
77
78
78
# Basic authentication
79
79
if ((my $info = $url -> userinfo) && !$headers -> authorization) {
Original file line number Diff line number Diff line change @@ -475,6 +475,11 @@ subtest 'Parse full HTTP 1.0 request (no scheme and empty elements in path)' =>
475
475
is $req -> url, ' //foo/bar//baz.html?foo=13' , ' right URL' ;
476
476
is $req -> headers-> content_type, ' text/plain' , ' right "Content-Type" value' ;
477
477
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' ;
478
483
};
479
484
480
485
subtest ' Parse full HTTP 1.0 request (behind reverse proxy)' => sub {
You can’t perform that action at this time.
0 commit comments