diff options
author | anon <anon [at] nowhere> | 2020-12-27 01:55:12 +0000 |
---|---|---|
committer | selsta <selsta@sent.at> | 2020-12-28 14:25:37 +0100 |
commit | f7ab8bc6d42ee2b11132c3009ac0207ba6117685 (patch) | |
tree | 796c48829d161656ec43ec1585c7e0cb7d03fb07 /contrib/epee/include/net/net_helper.h | |
parent | Merge pull request #7192 (diff) | |
download | monero-f7ab8bc6d42ee2b11132c3009ac0207ba6117685.tar.xz |
ssl: buffered handshake detection
Diffstat (limited to '')
-rw-r--r-- | contrib/epee/include/net/net_helper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/epee/include/net/net_helper.h b/contrib/epee/include/net/net_helper.h index 508c79d76..a1f44cab0 100644 --- a/contrib/epee/include/net/net_helper.h +++ b/contrib/epee/include/net/net_helper.h @@ -179,7 +179,7 @@ namespace net_utils // SSL Options if (m_ssl_options.support == epee::net_utils::ssl_support_t::e_ssl_support_enabled || m_ssl_options.support == epee::net_utils::ssl_support_t::e_ssl_support_autodetect) { - if (!m_ssl_options.handshake(*m_ssl_socket, boost::asio::ssl::stream_base::client, addr, timeout)) + if (!m_ssl_options.handshake(*m_ssl_socket, boost::asio::ssl::stream_base::client, {}, addr, timeout)) { if (m_ssl_options.support == epee::net_utils::ssl_support_t::e_ssl_support_autodetect) { |