added space after Host: http header

This commit is contained in:
Arvid Norberg 2008-12-04 21:44:21 +00:00
parent aeee715dd6
commit a54c3fc0e7
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ void http_connection::get(std::string const& url, time_duration timeout, int pri
else
{
headers << "GET " << path << " HTTP/1.0\r\n"
"Host:" << hostname << ":" << port << "\r\n";
"Host: " << hostname << ":" << port << "\r\n";
}
if (!auth.empty())