diff options
author | anon <anon [at] nowhere> | 2020-12-27 01:55:12 +0000 |
---|---|---|
committer | selsta <selsta@sent.at> | 2020-12-28 22:21:17 +0100 |
commit | b8bc4d77b7533ff7b02c4b362ef3891da04137ba (patch) | |
tree | ad00688c3f489e8bbd9bd7ad83ebe1fa6f7953b9 /contrib/epee/include/net/connection_basic.hpp | |
parent | Merge pull request #7193 (diff) | |
download | monero-b8bc4d77b7533ff7b02c4b362ef3891da04137ba.tar.xz |
ssl: buffered handshake detection
Diffstat (limited to '')
-rw-r--r-- | contrib/epee/include/net/connection_basic.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/epee/include/net/connection_basic.hpp b/contrib/epee/include/net/connection_basic.hpp index 90303a785..23873f65b 100644 --- a/contrib/epee/include/net/connection_basic.hpp +++ b/contrib/epee/include/net/connection_basic.hpp @@ -132,10 +132,10 @@ class connection_basic { // not-templated base class for rapid developmet of som ssl_support_t get_ssl_support() const { return m_ssl_support; } void disable_ssl() { m_ssl_support = epee::net_utils::ssl_support_t::e_ssl_support_disabled; } - bool handshake(boost::asio::ssl::stream_base::handshake_type type) + bool handshake(boost::asio::ssl::stream_base::handshake_type type, boost::asio::const_buffer buffer = {}) { //m_state != nullptr verified in constructor - return m_state->ssl_options().handshake(socket_, type); + return m_state->ssl_options().handshake(socket_, type, buffer); } template<typename MutableBufferSequence, typename ReadHandler> |