1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-13 15:27:52 +00:00

* http proxy : fix converted request (#508)

This commit is contained in:
hagen 2016-06-03 00:00:00 +00:00
parent aa6bc8042a
commit 2628426084

View File

@ -189,6 +189,12 @@ namespace proxy {
return true;
}
SanitizeHTTPRequest(req);
/* convert proxy-style http req to ordinary one: */
/* 1) replace Host header, 2) make relative url */
req.add_header("Host", url.host, true);
url.schema = "";
url.host = "";
req.uri = url.to_string();
/* drop original request from input buffer */
m_recv_buf.erase(m_recv_buf.begin(), m_recv_buf.begin() + req_len);