X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=httpinput.cpp;h=9412e785b6b15fa41f889a6a6e6acc8fbde8dd86;hp=5a93969ff4801c425ca9dc418cc030147e12c808;hb=924cf08c048e851227143c3f311bc17eb64a6319;hpb=513af50c3e3454aafc25e97a7d20c206006e4d4c;ds=sidebyside diff --git a/httpinput.cpp b/httpinput.cpp index 5a93969..9412e78 100644 --- a/httpinput.cpp +++ b/httpinput.cpp @@ -30,6 +30,19 @@ using namespace std; +namespace { + +string host_header(const string &host, const string &port) +{ + if (atoi(port.c_str()) == 80) { + return host; + } else { + return host + ":" + port; + } +} + +} // namespace + extern ServerPool *servers; HTTPInput::HTTPInput(const string &url, Input::Encoding encoding) @@ -339,7 +352,7 @@ void HTTPInput::do_work() state = CLOSING_SOCKET; } else { state = SENDING_REQUEST; - request = "GET " + path + " HTTP/1.0\r\nUser-Agent: cubemap\r\n\r\n"; + request = "GET " + path + " HTTP/1.0\r\nHost: " + host_header(host, port) + "\r\nUser-Agent: cubemap\r\n\r\n"; request_bytes_sent = 0; }