Browse Source

strip connection http header

pull/418/head
xcps 8 years ago
parent
commit
136b663cef
  1. 4
      HTTPProxy.cpp

4
HTTPProxy.cpp

@ -204,14 +204,14 @@ namespace proxy @@ -204,14 +204,14 @@ namespace proxy
if (eol)
{
*eol = 0; eol++;
if (strncmp ((const char *)http_buff, "Referer", 7)) // strip out referer
if (strncmp ((const char *)http_buff, "Referer", 7) && strncmp ((const char *)http_buff, "Connection", 10)) // strip out referer and connection
{
if (!strncmp ((const char *)http_buff, "User-Agent", 10)) // replace UserAgent
m_request.append("User-Agent: MYOB/6.66 (AN/ON)");
else
m_request.append ((const char *)http_buff);
m_request.append ("\r\n");
}
}
isEndOfHeader = !http_buff[0];
auto l = eol - http_buff;
http_buff = eol;

Loading…
Cancel
Save