From: Christos Tsantilas Date: Fri, 15 Jul 2016 13:28:48 +0000 (+0300) Subject: remove XXX comments from PeerConnector related to Downloader: they are not valid... X-Git-Tag: SQUID_4_0_13~5^2~1^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2109c3e6f60bfe77cb1a0d5cf8e3bf2ab18f4cd;p=thirdparty%2Fsquid.git remove XXX comments from PeerConnector related to Downloader: they are not valid any more --- diff --git a/src/ssl/PeerConnector.cc b/src/ssl/PeerConnector.cc index 7efdc25ace..65bc422fe4 100644 --- a/src/ssl/PeerConnector.cc +++ b/src/ssl/PeerConnector.cc @@ -541,7 +541,6 @@ Ssl::PeerConnector::startCertDownloading(SBuf &url) "Ssl::PeerConnector::certDownloadingDone", PeerConnectorCertDownloaderDialer(&Ssl::PeerConnector::certDownloadingDone, this)); - // XXX: find a way to link HttpRequest and Downloader, the following always fails. const Downloader *csd = dynamic_cast(request->downloader.valid()); Downloader *dl = new Downloader(url, certCallback, csd ? csd->nestedLevel() + 1 : 1); AsyncJob::Start(dl); @@ -590,8 +589,6 @@ Ssl::PeerConnector::checkForMissingCertificates() // certificate located in an SSL site which requires to download a // a missing certificate (... from an SSL site which requires to ...). - // XXX: find a way to link HttpRequest with Downloader. - // The following always fails: const Downloader *csd = request->downloader.get(); if (csd && csd->nestedLevel() >= MaxNestedDownloads) return false;