1
0
mirror of synced 2025-04-20 11:47:43 +03:00

Comment out debug print

This commit is contained in:
yhirose 2019-05-07 16:57:27 -04:00
parent b08e22ab00
commit 097c61b871

View File

@ -2422,8 +2422,8 @@ inline bool SSLClient::is_ssl() const { return true; }
inline bool SSLClient::check_host(const std::string &host, inline bool SSLClient::check_host(const std::string &host,
const char *pattern) const { const char *pattern) const {
printf("host: %s, pattern: %s\n", host.c_str(), pattern);
// TODO: Wildcard // TODO: Wildcard
// printf("host: %s, pattern: %s\n", host.c_str(), pattern);
return host == pattern; return host == pattern;
} }