maskit commented on code in PR #13088:
URL: https://github.com/apache/trafficserver/pull/13088#discussion_r3104358000


##########
src/iocore/net/SSLClientUtils.cc:
##########
@@ -247,6 +249,18 @@ SSLInitClientContext(const SSLConfigParams *params)
   }
 #endif
 
+  if (params->client_cert_compression_algorithms) {
+    std::vector<std::string> algs;
+    SimpleTokenizer          tok(params->client_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]

Reply via email to