bneradt commented on PR #13468: URL: https://github.com/apache/trafficserver/pull/13468#issuecomment-5147894493
> If the OpenSSL version works in a similar way as Quiche version, there is a downside to enabling QUIC automatically. All TLS certs would be loaded twice in total, once by SSLMultiCertConfigLoader and once by QUICMultiCertConfigLoader, even if you don't enable QUIC on records.config. The behavior would be consistent though. Great point. This is pretty easy to address actually. Before: quic_NetProcessor.start() was loading a second certificate table for every QUIC-capable build, and coordinated TLS reloads repeated that work even without a :quic listener. After: this patch changes both paths to check HttpProxyPort::hasQUIC() before doing them. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
