1
0
mirror of https://github.com/moparisthebest/spdylay synced 2024-08-13 17:03:54 -04:00

Don't modify user-agent

This commit is contained in:
Tatsuhiro Tsujikawa 2012-06-06 21:10:44 +09:00
parent ac84b68189
commit 4ac689526b

View File

@ -203,16 +203,11 @@ int Downstream::push_request_headers()
hdrs += "Host: ";
hdrs += get_config()->downstream_hostport;
hdrs += "\r\n";
// TODO Rewrite user-agent?
for(Headers::const_iterator i = request_headers_.begin();
i != request_headers_.end(); ++i) {
if(util::strieq((*i).first.c_str(), "X-Forwarded-Proto")) {
continue;
}
if(util::strieq((*i).first.c_str(), "user-agent")) {
hdrs += "User-Agent: ";
hdrs += get_config()->server_name;
} else {
hdrs += (*i).first;
hdrs += ": ";
hdrs += (*i).second;
@ -221,7 +216,6 @@ int Downstream::push_request_headers()
hdrs += ", ";
hdrs += upstream_->get_client_handler()->get_ipaddr();
}
}
hdrs += "\r\n";
}
hdrs += "Connection: close\r\n";