From: Alex Rousskov Date: Thu, 1 Oct 2020 16:01:33 +0000 (+0000) Subject: Always send port in request-target of CONNECT requests to peers (#733) X-Git-Tag: SQUID_5_0_5~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8b2186802978474cb664c1937461d9948f04f311;p=thirdparty%2Fsquid.git Always send port in request-target of CONNECT requests to peers (#733) Broken since commit f5e1794 (Peering support for SslBump). --- diff --git a/src/clients/HttpTunneler.cc b/src/clients/HttpTunneler.cc index a4957f73f3..27439945de 100644 --- a/src/clients/HttpTunneler.cc +++ b/src/clients/HttpTunneler.cc @@ -43,7 +43,7 @@ Http::Tunneler::Tunneler(const Comm::ConnectionPointer &conn, const HttpRequest: assert(connection); assert(callback); assert(dynamic_cast(callback->getDialer())); - url = request->url.authority(); + url = request->url.authority(true); watchForClosures(); }