mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
rewrite for efficiency
This commit is contained in:
parent
f617b27110
commit
016ae3b9e9
2 changed files with 9 additions and 5 deletions
|
@ -256,10 +256,12 @@ namespace client
|
|||
{
|
||||
if (!m_ConnectionSent && !line.compare(0, 10, "Connection"))
|
||||
{
|
||||
if (line.find("upgrade") == std::string::npos && line.find("Upgrade") == std::string::npos)
|
||||
m_OutHeader << "Connection: close\r\n"; /* close everything, except websocket */
|
||||
else
|
||||
/* close connection, if not Connection: (U|u)pgrade (for websocket) */
|
||||
auto x = line.find("pgrade");
|
||||
if (x != std::string::npos && std::tolower(line[x - 1]) == 'u')
|
||||
m_OutHeader << line << "\r\n";
|
||||
else
|
||||
m_OutHeader << "Connection: close\r\n";
|
||||
|
||||
m_ConnectionSent = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue