mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-13 04:46:38 +01:00
replace Proxy-Authorization
This commit is contained in:
parent
387e030d83
commit
a9b64893d8
1 changed files with 3 additions and 2 deletions
|
@ -282,7 +282,6 @@ namespace proxy {
|
|||
bool useConnect = false;
|
||||
if(m_ClientRequest.method == "CONNECT")
|
||||
{
|
||||
SanitizeHTTPRequest (m_ClientRequest);
|
||||
std::string uri(m_ClientRequest.uri);
|
||||
auto pos = uri.find(":");
|
||||
if(pos == std::string::npos || pos == uri.size() - 1)
|
||||
|
@ -392,7 +391,9 @@ namespace proxy {
|
|||
|
||||
if (m_ProxyURL.schema == "http" && (!m_ProxyURL.user.empty () || !m_ProxyURL.pass.empty ()))
|
||||
{
|
||||
// http proxy authorization
|
||||
// remove existing authorization if any
|
||||
m_ClientRequest.RemoveHeader("Proxy-");
|
||||
// add own http proxy authorization
|
||||
std::string s = "Basic " + i2p::data::ToBase64Standard (m_ProxyURL.user + ":" + m_ProxyURL.pass);
|
||||
m_ClientRequest.AddHeader("Proxy-Authorization", s);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue