server:port

This commit is contained in:
David Rose 2002-10-04 18:53:11 +00:00
parent 0ef64dece2
commit d1053bf2c3

View File

@ -531,8 +531,8 @@ get_https_proxy(const string &method, const URLSpec &url, const string &body) {
{
ostringstream request;
request
<< "CONNECT " << url.get_authority() << " " << get_http_version_string()
<< "\r\n";
<< "CONNECT " << url.get_server() << ":" << url.get_port()
<< " " << get_http_version_string() << "\r\n";
string request_str = request.str();
#ifndef NDEBUG