Commit 9a3c24a6 authored by Francois Cartegnie's avatar Francois Cartegnie

demux: adaptative: force no_cache

parent fb4b0f0c
......@@ -253,6 +253,7 @@ std::string HTTPConnection::buildRequestHeader(const std::string &path) const
std::stringstream req;
req << "GET " << path << " HTTP/1.1\r\n" <<
"Host: " << hostname << "\r\n" <<
"Cache-Control: no-cache" << "\r\n" <<
"User-Agent: " << std::string(psz_useragent) << "\r\n";
req << extraRequestHeaders();
return req.str();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment