mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-22 09:00:30 +01:00
correct cleanup for CONNECT
This commit is contained in:
parent
855cc9ed83
commit
387e030d83
1 changed files with 3 additions and 3 deletions
|
@ -219,7 +219,7 @@ namespace proxy {
|
||||||
/* replace headers */
|
/* replace headers */
|
||||||
req.UpdateHeader("User-Agent", "MYOB/6.66 (AN/ON)");
|
req.UpdateHeader("User-Agent", "MYOB/6.66 (AN/ON)");
|
||||||
/* add headers */
|
/* add headers */
|
||||||
req.AddHeader("Connection", "close"); /* keep-alive conns not supported yet */
|
req.UpdateHeader("Connection", "close"); /* keep-alive conns not supported yet */
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -282,7 +282,7 @@ namespace proxy {
|
||||||
bool useConnect = false;
|
bool useConnect = false;
|
||||||
if(m_ClientRequest.method == "CONNECT")
|
if(m_ClientRequest.method == "CONNECT")
|
||||||
{
|
{
|
||||||
m_ClientRequest.RemoveHeader("Proxy-");
|
SanitizeHTTPRequest (m_ClientRequest);
|
||||||
std::string uri(m_ClientRequest.uri);
|
std::string uri(m_ClientRequest.uri);
|
||||||
auto pos = uri.find(":");
|
auto pos = uri.find(":");
|
||||||
if(pos == std::string::npos || pos == uri.size() - 1)
|
if(pos == std::string::npos || pos == uri.size() - 1)
|
||||||
|
|
Loading…
Add table
Reference in a new issue