|
|
@ -256,7 +256,13 @@ namespace client |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (!m_ConnectionSent && !line.compare(0, 10, "Connection")) |
|
|
|
if (!m_ConnectionSent && !line.compare(0, 10, "Connection")) |
|
|
|
{ |
|
|
|
{ |
|
|
|
m_OutHeader << "Connection: close\r\n"; |
|
|
|
/* 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; |
|
|
|
m_ConnectionSent = true; |
|
|
|
} |
|
|
|
} |
|
|
|
else if (!m_ProxyConnectionSent && !line.compare(0, 16, "Proxy-Connection")) |
|
|
|
else if (!m_ProxyConnectionSent && !line.compare(0, 16, "Proxy-Connection")) |
|
|
|