From: Eduard Bagdasaryan Date: Sun, 29 May 2022 22:34:28 +0000 (+0000) Subject: Honor ftp_port worker-queues option (#1061) X-Git-Tag: SQUID_6_0_1~177 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=049eeeb;p=thirdparty%2Fsquid.git Honor ftp_port worker-queues option (#1061) --- diff --git a/src/client_side.cc b/src/client_side.cc index 5b61e0a710..276170c052 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -3380,7 +3380,8 @@ clientStartListeningOn(AnyP::PortCfgPointer &port, const RefCount< CommCbFunPtrC port->listenConn->flags = COMM_NONBLOCKING | (port->flags.tproxyIntercept ? COMM_TRANSPARENT : 0) | - (port->flags.natIntercept ? COMM_INTERCEPTION : 0); + (port->flags.natIntercept ? COMM_INTERCEPTION : 0) | + (port->workerQueues ? COMM_REUSEPORT : 0); // route new connections to subCall typedef CommCbFunPtrCallT AcceptCall;