/////////////////////////////////////////////////////////////////// Deal with lame-o servers by removing the host name from the url.
| 899 | //////////////////////////////////////////////////////////////////////// |
| 900 | // Deal with lame-o servers by removing the host name from the url. |
| 901 | void |
| 902 | HttpTransactHeaders::remove_host_name_from_url(HTTPHdr *outgoing_request) |
| 903 | { |
| 904 | URL *outgoing_url = outgoing_request->url_get(); |
| 905 | outgoing_url->nuke_proxy_stuff(); |
| 906 | } |
| 907 | |
| 908 | void |
| 909 | HttpTransactHeaders::add_global_user_agent_header_to_request(const OverridableHttpConfigParams *http_txn_conf, HTTPHdr *header) |
nothing calls this directly
no test coverage detected