We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a7c200 commit 56dc261Copy full SHA for 56dc261
trantor/net/TcpClient.cc
@@ -238,7 +238,7 @@ void TcpClient::enableSSL(
238
std::transform(hostname.begin(),
239
hostname.end(),
240
hostname.begin(),
241
- tolower);
+ [](unsigned char c) { return tolower(c); });
242
SSLHostName_ = std::move(hostname);
243
}
244
trantor/net/inner/TcpConnectionImpl.cc
@@ -554,7 +554,7 @@ void TcpConnectionImpl::startClientEncryption(
554
555
556
557
558
assert(sslEncryptionPtr_ != nullptr);
559
sslEncryptionPtr_->hostname_ = hostname;
560
0 commit comments