shinrich commented on a change in pull request #6977:
URL: https://github.com/apache/trafficserver/pull/6977#discussion_r452250287
##########
File path: iocore/net/UnixNetVConnection.cc
##########
@@ -1394,8 +1394,10 @@ UnixNetVConnection::migrateToCurrentThread(Continuation
*cont, EThread *t)
hold_con.move(this->con);
SSLNetVConnection *sslvc = dynamic_cast<SSLNetVConnection *>(this);
- SSL *save_ssl = (sslvc) ? sslvc->ssl : nullptr;
+ SSL *save_ssl = (sslvc) ? sslvc->ssl : nullptr;
+ const char *hold_ssl_client_cert_name = "";
if (save_ssl) {
+ hold_ssl_client_cert_name = sslvc->options.ssl_client_cert_name;
Review comment:
Yes, this is the only value that is checked during the origin session
match. The sni name name is pulled from the SSL object directly.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]