On 25/02/19 11:34 am, reinerotto wrote:
> 1) I did some tests with my own webserver, and my local openwrt-system,
> running squid. 
> And I can see, that http-traffic is throttled, but https is _not_.
> I used 10MB of data for my tests. Download speed for http is throttled to
> (my) 512kBit/s, as expected, but https is not throttled.
> 
> 2) I got some debug info from the https-test; because of privacy I am
> hesitating to upload here directly. 
> Pls, advise.
> 
> 3) Thank you very much for the enhancements regarding my squid.conf
> 

Does the attached patch fix this issue?


If not, then please send us a cache.log made with "debug_options 26,6
77,6". That should contain sufficient info to know whether the pool is
being decided properly without leaking any secure info.


Amos
diff --git a/src/tunnel.cc b/src/tunnel.cc
index 05bc46b2b..e6ac43736 100644
--- a/src/tunnel.cc
+++ b/src/tunnel.cc
@@ -1311,6 +1311,8 @@ switchToTunnel(HttpRequest *request, Comm::ConnectionPointer &clientConn, Comm::
 #if USE_DELAY_POOLS
     /* no point using the delayIsNoDelay stuff since tunnel is nice and simple */
     if (srvConn->getPeer() && srvConn->getPeer()->options.no_delay)
+        tunnelState->server.setDelayId(DelayId());
+    else
         tunnelState->server.setDelayId(DelayId::DelayClient(context->http));
 #endif
 
_______________________________________________
squid-users mailing list
squid-users@lists.squid-cache.org
http://lists.squid-cache.org/listinfo/squid-users

Reply via email to