maskit commented on code in PR #13088:
URL: https://github.com/apache/trafficserver/pull/13088#discussion_r3104357664
##########
src/iocore/net/SSLUtils.cc:
##########
@@ -435,6 +436,26 @@ DH_get_2048_256()
}
#endif
+bool
+SSLMultiCertConfigLoader::_enable_cert_compression(SSL_CTX *ctx)
+{
+ std::vector<std::string> algs;
+
+ if (this->_params->server_cert_compression_algorithms) {
+ SimpleTokenizer tok(this->_params->server_cert_compression_algorithms,
',');
+ for (const char *token = tok.getNext(); token; token = tok.getNext()) {
+ algs.emplace_back(token);
Review Comment:
Not true. SimpleTokenizer takes care of it.
--
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]